From 28cdbd979d413c05aaa489f04ef36d39276a2a93 Mon Sep 17 00:00:00 2001 From: Manish Vasani Date: Fri, 18 Aug 2017 11:22:12 -0700 Subject: [PATCH] Address PR feedback 1. Add IsChecked flag for IIncrementExpression and ICompoundAssignmentExpression 2. Add back VB specific binary operator kinds 3. Add more unit tests and fix baselines of existing tests --- .../Operations/CSharpOperationFactory.cs | 7 +- ...perationTests_IBinaryOperatorExpression.cs | 215 + .../Test/Semantic/Semantics/OperatorTests.cs | 2 +- .../Generated/Operations.xml.Generated.cs | 34 +- .../ICompoundAssignmentExpression.cs | 8 +- .../Operations/IIncrementExpression.cs | 7 +- .../Operations/IUnaryOperatorExpression.cs | 2 +- .../Portable/Operations/OperationCloner.cs | 4 +- .../Portable/Operations/OperationFactory.cs | 3 +- .../Core/Portable/PublicAPI.Unshipped.txt | 2 + .../Operations/VisualBasicOperationFactory.vb | 44 +- .../VisualBasicOperationFactory_Methods.vb | 18 +- .../Semantic/BasicCompilerSemanticTest.vbproj | 1 - .../Binding/BindingObjectInitializerTests.vb | 2 +- .../Diagnostics/OperationAnalyzerTests.vb | 44 +- .../Semantic/IOperation/IOperationTests.vb | 6 +- ...perationTests_IBinaryOperatorExpression.vb | 973 +- ...ationTests_IBlockStatement_MethodBlocks.vb | 18 +- .../IOperationTests_IConversionExpression.vb | 10 +- .../IOperationTests_IForEachLoopStatement.vb | 24 +- .../IOperationTests_IForLoopStatement.vb | 10 +- .../IOperationTests_IIfStatement.vb | 52 +- ...tionTests_IParameterReferenceExpression.vb | 16 +- .../IOperationTests_ISymbolInitializer.vb | 6 +- ...OperationTests_IUnaryOperatorExpression.vb | 196 +- .../IOperationTests_IVariableDeclaration.vb | 2 +- ...OperationTests_IWhileUntilLoopStatement.vb | 50 +- .../IOperationTests_InvalidExpression.vb | 10 +- .../IOperationTests_InvalidStatement.vb | 4 +- .../Test/Semantic/Resource.Designer.vb | 26 +- .../VisualBasic/Test/Semantic/Resource.resx | 3 - .../Semantic/Semantics/AnonymousTypesTests.vb | 4 +- .../Semantic/Semantics/BinaryOperators.vb | 47 +- ...ryOperatorsTestBaseline1_OperationTree.txt | 101888 --------------- .../Semantics/BinaryOperatorsTestSource1.vb | 2 +- .../Compilation/OperationTreeVerifier.cs | 6 +- 36 files changed, 1523 insertions(+), 102223 deletions(-) delete mode 100644 src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestBaseline1_OperationTree.txt diff --git a/src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs b/src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs index 6656e708eef..0fd2ee529ea 100644 --- a/src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs +++ b/src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs @@ -778,12 +778,14 @@ private ICompoundAssignmentExpression CreateBoundCompoundAssignmentOperatorOpera BinaryOperatorKind operatorKind = Helper.DeriveBinaryOperatorKind(boundCompoundAssignmentOperator.Operator.Kind); Lazy target = new Lazy(() => Create(boundCompoundAssignmentOperator.Left)); Lazy value = new Lazy(() => Create(boundCompoundAssignmentOperator.Right)); + bool isLifted = boundCompoundAssignmentOperator.Type.IsNullableType(); + bool isChecked = boundCompoundAssignmentOperator.Operator.Kind.IsChecked(); bool usesOperatorMethod = (boundCompoundAssignmentOperator.Operator.Kind & CSharp.BinaryOperatorKind.TypeMask) == CSharp.BinaryOperatorKind.UserDefined; IMethodSymbol operatorMethod = boundCompoundAssignmentOperator.Operator.Method; SyntaxNode syntax = boundCompoundAssignmentOperator.Syntax; ITypeSymbol type = boundCompoundAssignmentOperator.Type; Optional constantValue = ConvertToOptional(boundCompoundAssignmentOperator.ConstantValue); - return new LazyCompoundAssignmentExpression(operatorKind, boundCompoundAssignmentOperator.Type.IsNullableType(), target, value, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue); + return new LazyCompoundAssignmentExpression(operatorKind, isLifted, isChecked, target, value, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue); } private IIncrementExpression CreateBoundIncrementOperatorOperation(BoundIncrementOperator boundIncrementOperator) @@ -791,13 +793,14 @@ private IIncrementExpression CreateBoundIncrementOperatorOperation(BoundIncremen bool isDecrement = Helper.IsDecrement(boundIncrementOperator.OperatorKind); bool isPostfix = Helper.IsPostfixIncrementOrDecrement(boundIncrementOperator.OperatorKind); bool isLifted = boundIncrementOperator.OperatorKind.IsLifted(); + bool isChecked = boundIncrementOperator.OperatorKind.IsChecked(); Lazy target = new Lazy(() => Create(boundIncrementOperator.Operand)); bool usesOperatorMethod = (boundIncrementOperator.OperatorKind & CSharp.UnaryOperatorKind.TypeMask) == CSharp.UnaryOperatorKind.UserDefined; IMethodSymbol operatorMethod = boundIncrementOperator.MethodOpt; SyntaxNode syntax = boundIncrementOperator.Syntax; ITypeSymbol type = boundIncrementOperator.Type; Optional constantValue = ConvertToOptional(boundIncrementOperator.ConstantValue); - return new LazyIncrementExpression(isDecrement, isPostfix, isLifted, target, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue); + return new LazyIncrementExpression(isDecrement, isPostfix, isLifted, isChecked, target, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue); } private IInvalidExpression CreateBoundBadExpressionOperation(BoundBadExpression boundBadExpression) diff --git a/src/Compilers/CSharp/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.cs b/src/Compilers/CSharp/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.cs index 1fb06e5ea45..d0a1f3e030e 100644 --- a/src/Compilers/CSharp/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.cs +++ b/src/Compilers/CSharp/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.cs @@ -51,6 +51,58 @@ void F(int x, int y) VerifyOperationTreeForTest(source, expectedOperationTree); } + [CompilerTrait(CompilerFeature.IOperation)] + [Fact] + public void VerifyLiftedCheckedBinaryOperators1() + { + string source = @" +class C +{ + void F(int? x, int? y) + { + checked + { + var z = /**/x + y/**/; + } + } +} +"; + string expectedOperationTree = @" +IBinaryOperatorExpression (BinaryOperatorKind.Add, IsLifted, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32?) (Syntax: 'x + y') + Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.Int32?) (Syntax: 'x') + Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.Int32?) (Syntax: 'y') +"; + var expectedDiagnostics = DiagnosticDescription.None; + + VerifyOperationTreeAndDiagnosticsForTest(source, expectedOperationTree, expectedDiagnostics); + } + + [CompilerTrait(CompilerFeature.IOperation)] + [Fact] + public void VerifyNonLiftedCheckedBinaryOperators1() + { + string source = @" +class C +{ + void F(int x, int y) + { + checked + { + var z = /**/x + y/**/; + } + } +} +"; + string expectedOperationTree = @" +IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x + y') + Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'y') +"; + var expectedDiagnostics = DiagnosticDescription.None; + + VerifyOperationTreeAndDiagnosticsForTest(source, expectedOperationTree, expectedDiagnostics); + } + [CompilerTrait(CompilerFeature.IOperation)] [Fact] public void VerifyLiftedUserDefinedBinaryOperators1() @@ -94,5 +146,168 @@ void F(C x, C y) VerifyOperationTreeForTest(source, expectedOperationTree); } + + [CompilerTrait(CompilerFeature.IOperation)] + [Fact] + public void TestBinaryOperators() + { + string source = @" +using System; +class C +{ + void M(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j, int k, int l, int m, int n, int o, int p) + { + /**/Console.WriteLine( + (a >> 10) + (b << 20) - c * d / e % f & g | + h ^ (i == (j != ((((k < l ? 1 : 0) > m ? 1 : 0) <= o ? 1 : 0) >= p ? 1 : 0) ? 1 : 0) ? 1 : 0))/**/; + } +} +"; + string expectedOperationTree = @" +IInvocationExpression (void System.Console.WriteLine(System.Int32 value)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'Console.Wri ... ) ? 1 : 0))') + Instance Receiver: null + Arguments(1): + IArgument (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument) (Syntax: '(a >> 10) + ... 0) ? 1 : 0)') + IBinaryOperatorExpression (BinaryOperatorKind.Or) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + ... 0) ? 1 : 0)') + Left: IBinaryOperatorExpression (BinaryOperatorKind.And) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + ... / e % f & g') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Subtract) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + ... * d / e % f') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Add) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + (b << 20)') + Left: IBinaryOperatorExpression (BinaryOperatorKind.RightShift) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'a >> 10') + Left: IParameterReferenceExpression: a (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'a') + Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') + Right: IBinaryOperatorExpression (BinaryOperatorKind.LeftShift) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'b << 20') + Left: IParameterReferenceExpression: b (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'b') + Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Remainder) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'c * d / e % f') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Divide) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'c * d / e') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Multiply) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'c * d') + Left: IParameterReferenceExpression: c (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'c') + Right: IParameterReferenceExpression: d (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'd') + Right: IParameterReferenceExpression: e (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'e') + Right: IParameterReferenceExpression: f (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'f') + Right: IParameterReferenceExpression: g (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'g') + Right: IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'h ^ (i == ( ... 0) ? 1 : 0)') + Left: IParameterReferenceExpression: h (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'h') + Right: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: 'i == (j != ... 0) ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'i == (j != ... 0) ? 1 : 0)') + Left: IParameterReferenceExpression: i (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'i') + Right: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: 'j != ((((k ... 0) ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'j != ((((k ... p ? 1 : 0)') + Left: IParameterReferenceExpression: j (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'j') + Right: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: '(((k < l ? ... = p ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(((k < l ? ... 1 : 0) >= p') + Left: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: '((k < l ? 1 ... = o ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '((k < l ? 1 ... 1 : 0) <= o') + Left: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: '(k < l ? 1 ... > m ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(k < l ? 1 : 0) > m') + Left: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: 'k < l ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.LessThan) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'k < l') + Left: IParameterReferenceExpression: k (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'k') + Right: IParameterReferenceExpression: l (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'l') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + Right: IParameterReferenceExpression: m (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'm') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + Right: IParameterReferenceExpression: o (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'o') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + Right: IParameterReferenceExpression: p (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'p') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + InConversion: null + OutConversion: null +"; + var expectedDiagnostics = DiagnosticDescription.None; + + VerifyOperationTreeAndDiagnosticsForTest(source, expectedOperationTree, expectedDiagnostics); + } + + [CompilerTrait(CompilerFeature.IOperation)] + [Fact] + public void TestBinaryOperators_Checked() + { + string source = @" +using System; +class C +{ + void M(int a, int b, int c, int d, int e, int f, int g, int h, int i, int j, int k, int l, int m, int n, int o, int p) + { + checked + { + /**/Console.WriteLine( + (a >> 10) + (b << 20) - c * d / e % f & g | + h ^ (i == (j != ((((k < l ? 1 : 0) > m ? 1 : 0) <= o ? 1 : 0) >= p ? 1 : 0) ? 1 : 0) ? 1 : 0))/**/; + } + } +} +"; + string expectedOperationTree = @" +IInvocationExpression (void System.Console.WriteLine(System.Int32 value)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'Console.Wri ... ) ? 1 : 0))') + Instance Receiver: null + Arguments(1): + IArgument (ArgumentKind.Explicit, Matching Parameter: value) (OperationKind.Argument) (Syntax: '(a >> 10) + ... 0) ? 1 : 0)') + IBinaryOperatorExpression (BinaryOperatorKind.Or) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + ... 0) ? 1 : 0)') + Left: IBinaryOperatorExpression (BinaryOperatorKind.And) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + ... / e % f & g') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Subtract, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + ... * d / e % f') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '(a >> 10) + (b << 20)') + Left: IBinaryOperatorExpression (BinaryOperatorKind.RightShift) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'a >> 10') + Left: IParameterReferenceExpression: a (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'a') + Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') + Right: IBinaryOperatorExpression (BinaryOperatorKind.LeftShift) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'b << 20') + Left: IParameterReferenceExpression: b (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'b') + Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Remainder) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'c * d / e % f') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Divide, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'c * d / e') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Multiply, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'c * d') + Left: IParameterReferenceExpression: c (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'c') + Right: IParameterReferenceExpression: d (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'd') + Right: IParameterReferenceExpression: e (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'e') + Right: IParameterReferenceExpression: f (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'f') + Right: IParameterReferenceExpression: g (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'g') + Right: IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'h ^ (i == ( ... 0) ? 1 : 0)') + Left: IParameterReferenceExpression: h (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'h') + Right: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: 'i == (j != ... 0) ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'i == (j != ... 0) ? 1 : 0)') + Left: IParameterReferenceExpression: i (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'i') + Right: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: 'j != ((((k ... 0) ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'j != ((((k ... p ? 1 : 0)') + Left: IParameterReferenceExpression: j (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'j') + Right: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: '(((k < l ? ... = p ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(((k < l ? ... 1 : 0) >= p') + Left: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: '((k < l ? 1 ... = o ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '((k < l ? 1 ... 1 : 0) <= o') + Left: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: '(k < l ? 1 ... > m ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(k < l ? 1 : 0) > m') + Left: IConditionalChoiceExpression (OperationKind.ConditionalChoiceExpression, Type: System.Int32) (Syntax: 'k < l ? 1 : 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.LessThan) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'k < l') + Left: IParameterReferenceExpression: k (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'k') + Right: IParameterReferenceExpression: l (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'l') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + Right: IParameterReferenceExpression: m (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'm') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + Right: IParameterReferenceExpression: o (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'o') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + Right: IParameterReferenceExpression: p (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'p') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + IfTrue: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') + IfFalse: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') + InConversion: null + OutConversion: null +"; + var expectedDiagnostics = DiagnosticDescription.None; + + VerifyOperationTreeAndDiagnosticsForTest(source, expectedOperationTree, expectedDiagnostics); + } } } diff --git a/src/Compilers/CSharp/Test/Semantic/Semantics/OperatorTests.cs b/src/Compilers/CSharp/Test/Semantic/Semantics/OperatorTests.cs index 51370a134fd..b5b0ee344c6 100644 --- a/src/Compilers/CSharp/Test/Semantic/Semantics/OperatorTests.cs +++ b/src/Compilers/CSharp/Test/Semantic/Semantics/OperatorTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; diff --git a/src/Compilers/Core/Portable/Generated/Operations.xml.Generated.cs b/src/Compilers/Core/Portable/Generated/Operations.xml.Generated.cs index e4b44302cea..9fc1c511859 100644 --- a/src/Compilers/Core/Portable/Generated/Operations.xml.Generated.cs +++ b/src/Compilers/Core/Portable/Generated/Operations.xml.Generated.cs @@ -679,7 +679,7 @@ internal abstract partial class BaseBinaryOperatorExpression : Operation, IHasOp /// public bool IsLifted { get; } /// - /// true if this is a 'checked' binary operator. + /// true if this is overflow checking is performed for the arithmetic operation. /// public bool IsChecked { get; } /// @@ -957,11 +957,12 @@ public LazyCatchClause(Lazy handler, ITypeSymbol caughtType, La /// internal abstract partial class BaseCompoundAssignmentExpression : AssignmentExpression, IHasOperatorMethodExpression, ICompoundAssignmentExpression { - protected BaseCompoundAssignmentExpression(BinaryOperatorKind operatorKind, bool isLifted, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : + protected BaseCompoundAssignmentExpression(BinaryOperatorKind operatorKind, bool isLifted, bool isChecked, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : base(OperationKind.CompoundAssignmentExpression, semanticModel, syntax, type, constantValue) { OperatorKind = operatorKind; IsLifted = isLifted; + IsChecked = isChecked; UsesOperatorMethod = usesOperatorMethod; OperatorMethod = operatorMethod; } @@ -974,6 +975,10 @@ internal abstract partial class BaseCompoundAssignmentExpression : AssignmentExp /// public bool IsLifted { get; } /// + /// true if this is overflow checking is performed for the arithmetic operation. + /// + public bool IsChecked { get; } + /// /// True if and only if the operation is performed by an operator method. /// public bool UsesOperatorMethod { get; } @@ -1005,8 +1010,8 @@ public override void Accept(OperationVisitor visitor) /// internal sealed partial class CompoundAssignmentExpression : BaseCompoundAssignmentExpression, IHasOperatorMethodExpression, ICompoundAssignmentExpression { - public CompoundAssignmentExpression(BinaryOperatorKind operatorKind, bool isLifted, IOperation target, IOperation value, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : - base(operatorKind, isLifted, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) + public CompoundAssignmentExpression(BinaryOperatorKind operatorKind, bool isLifted, bool isChecked, IOperation target, IOperation value, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : + base(operatorKind, isLifted, isChecked, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) { TargetImpl = target; ValueImpl = value; @@ -1023,8 +1028,8 @@ internal sealed partial class LazyCompoundAssignmentExpression : BaseCompoundAss private readonly Lazy _lazyTarget; private readonly Lazy _lazyValue; - public LazyCompoundAssignmentExpression(BinaryOperatorKind operatorKind, bool isLifted, Lazy target, Lazy value, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : - base(operatorKind, isLifted, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) + public LazyCompoundAssignmentExpression(BinaryOperatorKind operatorKind, bool isLifted, bool isChecked, Lazy target, Lazy value, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : + base(operatorKind, isLifted, isChecked, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) { _lazyTarget = target ?? throw new System.ArgumentNullException(nameof(target)); _lazyValue = value ?? throw new System.ArgumentNullException(nameof(value)); @@ -2015,12 +2020,13 @@ public LazyIfStatement(Lazy condition, Lazy ifTrueStatem /// internal abstract partial class BaseIncrementExpression : Operation, IIncrementExpression { - public BaseIncrementExpression(bool isDecrement, bool isPostfix, bool isLifted, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : + public BaseIncrementExpression(bool isDecrement, bool isPostfix, bool isLifted, bool isChecked, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : base(OperationKind.IncrementExpression, semanticModel, syntax, type, constantValue) { IsDecrement = isDecrement; IsPostfix = isPostfix; IsLifted = isLifted; + IsChecked = isChecked; UsesOperatorMethod = usesOperatorMethod; OperatorMethod = operatorMethod; } @@ -2041,6 +2047,10 @@ internal abstract partial class BaseIncrementExpression : Operation, IIncrementE /// value types. /// public bool IsLifted { get; } + /// + /// true if this is overflow checking is performed for the arithmetic operation. + /// + public bool IsChecked { get; } protected abstract IOperation TargetImpl { get; } /// /// True if and only if the operation is performed by an operator method. @@ -2077,8 +2087,8 @@ public override void Accept(OperationVisitor visitor) /// internal sealed partial class IncrementExpression : BaseIncrementExpression, IIncrementExpression { - public IncrementExpression(bool isDecrement, bool isPostfix, bool isLifted, IOperation target, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : - base(isDecrement, isPostfix, isLifted, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) + public IncrementExpression(bool isDecrement, bool isPostfix, bool isLifted, bool isChecked, IOperation target, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : + base(isDecrement, isPostfix, isLifted, isChecked, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) { TargetImpl = target; } @@ -2093,8 +2103,8 @@ internal sealed partial class LazyIncrementExpression : BaseIncrementExpression, { private readonly Lazy _lazyTarget; - public LazyIncrementExpression(bool isDecrement, bool isPostfix, bool isLifted, Lazy target, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : - base(isDecrement, isPostfix, isLifted, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) + public LazyIncrementExpression(bool isDecrement, bool isPostfix, bool isLifted, bool isChecked, Lazy target, bool usesOperatorMethod, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax, ITypeSymbol type, Optional constantValue) : + base(isDecrement, isPostfix, isLifted, isChecked, usesOperatorMethod, operatorMethod, semanticModel, syntax, type, constantValue) { _lazyTarget = target ?? throw new System.ArgumentNullException(nameof(target)); } @@ -4733,7 +4743,7 @@ internal abstract partial class BaseUnaryOperatorExpression : Operation, IHasOpe /// public bool IsLifted { get; } /// - /// true if this is a 'checked' binary operator. + /// true if this is overflow checking is performed for the arithmetic operation. /// public bool IsChecked { get; } public override IEnumerable Children diff --git a/src/Compilers/Core/Portable/Operations/ICompoundAssignmentExpression.cs b/src/Compilers/Core/Portable/Operations/ICompoundAssignmentExpression.cs index 61a9fae6e9a..59e8da1ae99 100644 --- a/src/Compilers/Core/Portable/Operations/ICompoundAssignmentExpression.cs +++ b/src/Compilers/Core/Portable/Operations/ICompoundAssignmentExpression.cs @@ -1,7 +1,5 @@ // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System.Collections.Immutable; - namespace Microsoft.CodeAnalysis.Semantics { /// @@ -17,9 +15,15 @@ public interface ICompoundAssignmentExpression : IAssignmentExpression, IHasOper /// Kind of binary operation. /// BinaryOperatorKind OperatorKind { get; } + /// /// true if this assignment contains a 'lifted' binary operation. /// bool IsLifted { get; } + + /// + /// true if this is overflow checking is performed for the arithmetic operation. + /// + bool IsChecked { get; } } } diff --git a/src/Compilers/Core/Portable/Operations/IIncrementExpression.cs b/src/Compilers/Core/Portable/Operations/IIncrementExpression.cs index 75abb4b1497..8eb3fce22fd 100644 --- a/src/Compilers/Core/Portable/Operations/IIncrementExpression.cs +++ b/src/Compilers/Core/Portable/Operations/IIncrementExpression.cs @@ -1,7 +1,5 @@ // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -using System.Collections.Immutable; - namespace Microsoft.CodeAnalysis.Semantics { /// @@ -37,6 +35,11 @@ public interface IIncrementExpression : IOperation, IHasOperatorMethodExpression /// value types. /// bool IsLifted { get; } + + /// + /// true if this is overflow checking is performed for the arithmetic operation. + /// + bool IsChecked { get; } } } diff --git a/src/Compilers/Core/Portable/Operations/IUnaryOperatorExpression.cs b/src/Compilers/Core/Portable/Operations/IUnaryOperatorExpression.cs index a05c8d12273..f28942526af 100644 --- a/src/Compilers/Core/Portable/Operations/IUnaryOperatorExpression.cs +++ b/src/Compilers/Core/Portable/Operations/IUnaryOperatorExpression.cs @@ -31,7 +31,7 @@ public interface IUnaryOperatorExpression : IHasOperatorMethodExpression bool IsLifted { get; } /// - /// true if this is a 'checked' binary operator. + /// true if this is overflow checking is performed for the arithmetic operation. /// bool IsChecked { get; } } diff --git a/src/Compilers/Core/Portable/Operations/OperationCloner.cs b/src/Compilers/Core/Portable/Operations/OperationCloner.cs index 5e01b16e581..1e0502af673 100644 --- a/src/Compilers/Core/Portable/Operations/OperationCloner.cs +++ b/src/Compilers/Core/Portable/Operations/OperationCloner.cs @@ -381,12 +381,12 @@ public override IOperation VisitSimpleAssignmentExpression(ISimpleAssignmentExpr public override IOperation VisitCompoundAssignmentExpression(ICompoundAssignmentExpression operation, object argument) { - return new CompoundAssignmentExpression(operation.OperatorKind, operation.IsLifted, Visit(operation.Target), Visit(operation.Value), operation.UsesOperatorMethod, operation.OperatorMethod, ((Operation)operation).SemanticModel, operation.Syntax, operation.Type, operation.ConstantValue); + return new CompoundAssignmentExpression(operation.OperatorKind, operation.IsLifted, operation.IsChecked, Visit(operation.Target), Visit(operation.Value), operation.UsesOperatorMethod, operation.OperatorMethod, ((Operation)operation).SemanticModel, operation.Syntax, operation.Type, operation.ConstantValue); } public override IOperation VisitIncrementExpression(IIncrementExpression operation, object argument) { - return new IncrementExpression(operation.IsDecrement, operation.IsPostfix, operation.IsLifted, Visit(operation.Target), operation.UsesOperatorMethod, operation.OperatorMethod, ((Operation)operation).SemanticModel, operation.Syntax, operation.Type, operation.ConstantValue); + return new IncrementExpression(operation.IsDecrement, operation.IsPostfix, operation.IsLifted, operation.IsChecked, Visit(operation.Target), operation.UsesOperatorMethod, operation.OperatorMethod, ((Operation)operation).SemanticModel, operation.Syntax, operation.Type, operation.ConstantValue); } public override IOperation VisitParenthesizedExpression(IParenthesizedExpression operation, object argument) diff --git a/src/Compilers/Core/Portable/Operations/OperationFactory.cs b/src/Compilers/Core/Portable/Operations/OperationFactory.cs index 22261ba30ec..6b4ea92e033 100644 --- a/src/Compilers/Core/Portable/Operations/OperationFactory.cs +++ b/src/Compilers/Core/Portable/Operations/OperationFactory.cs @@ -42,11 +42,12 @@ public static IExpressionStatement CreateSimpleAssignmentExpressionStatement(IOp } public static IExpressionStatement CreateCompoundAssignmentExpressionStatement( - IOperation target, IOperation value, BinaryOperatorKind operatorKind, bool isLifted, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax) + IOperation target, IOperation value, BinaryOperatorKind operatorKind, bool isLifted, bool isChecked, IMethodSymbol operatorMethod, SemanticModel semanticModel, SyntaxNode syntax) { var expression = new CompoundAssignmentExpression( operatorKind, isLifted, + isChecked, target, value, operatorMethod != null, diff --git a/src/Compilers/Core/Portable/PublicAPI.Unshipped.txt b/src/Compilers/Core/Portable/PublicAPI.Unshipped.txt index 66c64dde61e..4aa36a8cd0b 100644 --- a/src/Compilers/Core/Portable/PublicAPI.Unshipped.txt +++ b/src/Compilers/Core/Portable/PublicAPI.Unshipped.txt @@ -245,6 +245,7 @@ Microsoft.CodeAnalysis.Semantics.ICollectionElementInitializerExpression.AddMeth Microsoft.CodeAnalysis.Semantics.ICollectionElementInitializerExpression.Arguments.get -> System.Collections.Immutable.ImmutableArray Microsoft.CodeAnalysis.Semantics.ICollectionElementInitializerExpression.IsDynamic.get -> bool Microsoft.CodeAnalysis.Semantics.ICompoundAssignmentExpression +Microsoft.CodeAnalysis.Semantics.ICompoundAssignmentExpression.IsChecked.get -> bool Microsoft.CodeAnalysis.Semantics.ICompoundAssignmentExpression.IsLifted.get -> bool Microsoft.CodeAnalysis.Semantics.ICompoundAssignmentExpression.OperatorKind.get -> Microsoft.CodeAnalysis.Semantics.BinaryOperatorKind Microsoft.CodeAnalysis.Semantics.IConditionalAccessExpression @@ -317,6 +318,7 @@ Microsoft.CodeAnalysis.Semantics.IIfStatement.Condition.get -> Microsoft.CodeAna Microsoft.CodeAnalysis.Semantics.IIfStatement.IfFalseStatement.get -> Microsoft.CodeAnalysis.IOperation Microsoft.CodeAnalysis.Semantics.IIfStatement.IfTrueStatement.get -> Microsoft.CodeAnalysis.IOperation Microsoft.CodeAnalysis.Semantics.IIncrementExpression +Microsoft.CodeAnalysis.Semantics.IIncrementExpression.IsChecked.get -> bool Microsoft.CodeAnalysis.Semantics.IIncrementExpression.IsDecrement.get -> bool Microsoft.CodeAnalysis.Semantics.IIncrementExpression.IsLifted.get -> bool Microsoft.CodeAnalysis.Semantics.IIncrementExpression.IsPostfix.get -> bool diff --git a/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory.vb b/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory.vb index cc627a21144..e455941e770 100644 --- a/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory.vb +++ b/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory.vb @@ -272,7 +272,9 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim syntax As SyntaxNode = boundAssignmentOperator.Syntax Dim type As ITypeSymbol = boundAssignmentOperator.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundAssignmentOperator.ConstantValueOpt) - Return New LazyCompoundAssignmentExpression(operatorKind, boundAssignmentOperator.Type.IsNullableType(), target, value, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue) + Dim isLifted As Boolean = boundAssignmentOperator.Type.IsNullableType() + Dim isChecked As Boolean = False + Return New LazyCompoundAssignmentExpression(operatorKind, isLifted, isChecked, target, value, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue) Else Dim target As Lazy(Of IOperation) = New Lazy(Of IOperation)(Function() Create(boundAssignmentOperator.Left)) Dim value As Lazy(Of IOperation) = New Lazy(Of IOperation)(Function() Create(boundAssignmentOperator.Right)) @@ -395,8 +397,8 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim syntax As SyntaxNode = boundUnaryOperator.Syntax Dim type As ITypeSymbol = boundUnaryOperator.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundUnaryOperator.ConstantValueOpt) - Dim isLifted = (boundUnaryOperator.OperatorKind And VisualBasic.UnaryOperatorKind.Lifted) <> 0 - Dim isChecked = boundUnaryOperator.Checked + Dim isLifted As Boolean = (boundUnaryOperator.OperatorKind And VisualBasic.UnaryOperatorKind.Lifted) <> 0 + Dim isChecked As Boolean = boundUnaryOperator.Checked Return New LazyUnaryOperatorExpression(operatorKind, operand, isLifted, isChecked, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue) End Function @@ -414,13 +416,13 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim syntax As SyntaxNode = boundUserDefinedUnaryOperator.Syntax Dim type As ITypeSymbol = boundUserDefinedUnaryOperator.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundUserDefinedUnaryOperator.ConstantValueOpt) - Dim isLifted = (boundUserDefinedUnaryOperator.OperatorKind And VisualBasic.UnaryOperatorKind.Lifted) <> 0 - Dim isChecked = False + Dim isLifted As Boolean = (boundUserDefinedUnaryOperator.OperatorKind And VisualBasic.UnaryOperatorKind.Lifted) <> 0 + Dim isChecked As Boolean = False Return New LazyUnaryOperatorExpression(operatorKind, operand, isLifted, isChecked, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue) End Function Private Function CreateBoundBinaryOperatorOperation(boundBinaryOperator As BoundBinaryOperator) As IBinaryOperatorExpression - Dim operatorKind As BinaryOperatorKind = Helper.DeriveBinaryOperatorKind(boundBinaryOperator.OperatorKind) + Dim operatorKind As BinaryOperatorKind = Helper.DeriveBinaryOperatorKind(boundBinaryOperator.OperatorKind, boundBinaryOperator.Left) Dim leftOperand As Lazy(Of IOperation) = New Lazy(Of IOperation)(Function() Create(boundBinaryOperator.Left)) Dim rightOperand As Lazy(Of IOperation) = New Lazy(Of IOperation)(Function() Create(boundBinaryOperator.Right)) Dim usesOperatorMethod As Boolean = False @@ -428,14 +430,14 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim syntax As SyntaxNode = boundBinaryOperator.Syntax Dim type As ITypeSymbol = boundBinaryOperator.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundBinaryOperator.ConstantValueOpt) - Dim isLifted = (boundBinaryOperator.OperatorKind And VisualBasic.BinaryOperatorKind.Lifted) <> 0 - Dim isChecked = boundBinaryOperator.Checked - Dim isCompareText = (boundBinaryOperator.OperatorKind And VisualBasic.BinaryOperatorKind.CompareText) <> 0 + Dim isLifted As Boolean = (boundBinaryOperator.OperatorKind And VisualBasic.BinaryOperatorKind.Lifted) <> 0 + Dim isChecked As Boolean = boundBinaryOperator.Checked + Dim isCompareText As Boolean = (boundBinaryOperator.OperatorKind And VisualBasic.BinaryOperatorKind.CompareText) <> 0 Return New LazyBinaryOperatorExpression(operatorKind, leftOperand, rightOperand, isLifted, isChecked, isCompareText, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue) End Function Private Function CreateBoundUserDefinedBinaryOperatorOperation(boundUserDefinedBinaryOperator As BoundUserDefinedBinaryOperator) As IBinaryOperatorExpression - Dim operatorKind As BinaryOperatorKind = Helper.DeriveBinaryOperatorKind(boundUserDefinedBinaryOperator.OperatorKind) + Dim operatorKind As BinaryOperatorKind = Helper.DeriveBinaryOperatorKind(boundUserDefinedBinaryOperator.OperatorKind, leftOpt:=Nothing) Dim leftOperand As Lazy(Of IOperation) = New Lazy(Of IOperation)(Function() GetUserDefinedBinaryOperatorChild(boundUserDefinedBinaryOperator, 0)) Dim rightOperand As Lazy(Of IOperation) = New Lazy(Of IOperation)(Function() GetUserDefinedBinaryOperatorChild(boundUserDefinedBinaryOperator, 1)) Dim operatorMethod As IMethodSymbol = If(boundUserDefinedBinaryOperator.UnderlyingExpression.Kind = BoundKind.Call, boundUserDefinedBinaryOperator.Call.Method, Nothing) @@ -443,9 +445,9 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim syntax As SyntaxNode = boundUserDefinedBinaryOperator.Syntax Dim type As ITypeSymbol = boundUserDefinedBinaryOperator.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundUserDefinedBinaryOperator.ConstantValueOpt) - Dim isLifted = (boundUserDefinedBinaryOperator.OperatorKind And VisualBasic.BinaryOperatorKind.Lifted) <> 0 - Dim isChecked = boundUserDefinedBinaryOperator.Checked - Dim isCompareText = (boundUserDefinedBinaryOperator.OperatorKind And VisualBasic.BinaryOperatorKind.CompareText) <> 0 + Dim isLifted As Boolean = (boundUserDefinedBinaryOperator.OperatorKind And VisualBasic.BinaryOperatorKind.Lifted) <> 0 + Dim isChecked As Boolean = boundUserDefinedBinaryOperator.Checked + Dim isCompareText As Boolean = False Return New LazyBinaryOperatorExpression(operatorKind, leftOperand, rightOperand, isLifted, isChecked, isCompareText, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue) End Function @@ -467,9 +469,9 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim syntax As SyntaxNode = boundUserDefinedShortCircuitingOperator.Syntax Dim type As ITypeSymbol = boundUserDefinedShortCircuitingOperator.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundUserDefinedShortCircuitingOperator.ConstantValueOpt) - Dim isLifted = (boundUserDefinedShortCircuitingOperator.BitwiseOperator.OperatorKind And VisualBasic.BinaryOperatorKind.Lifted) <> 0 - Dim isChecked = False - Dim isCompareText = False + Dim isLifted As Boolean = (boundUserDefinedShortCircuitingOperator.BitwiseOperator.OperatorKind And VisualBasic.BinaryOperatorKind.Lifted) <> 0 + Dim isChecked As Boolean = False + Dim isCompareText As Boolean = False Return New LazyBinaryOperatorExpression(operatorKind, leftOperand, rightOperand, isLifted, isChecked, isCompareText, usesOperatorMethod, operatorMethod, _semanticModel, syntax, type, constantValue) End Function @@ -487,7 +489,7 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim conversion As Conversion = _semanticModel.GetConversion(syntax) Dim isExplicitCastInCode As Boolean = True Dim isTryCast As Boolean = True - Dim isChecked = False + Dim isChecked As Boolean = False Dim type As ITypeSymbol = boundTryCast.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundTryCast.ConstantValueOpt) Return New LazyVisualBasicConversionExpression(operand, conversion, isExplicitCastInCode, isTryCast, isChecked, _semanticModel, syntax, type, constantValue) @@ -499,7 +501,7 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim conversion As Conversion = _semanticModel.GetConversion(syntax) Dim isExplicit As Boolean = True Dim isTryCast As Boolean = False - Dim isChecked = False + Dim isChecked As Boolean = False Dim type As ITypeSymbol = boundDirectCast.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundDirectCast.ConstantValueOpt) Return New LazyVisualBasicConversionExpression(operand, conversion, isExplicit, isTryCast, isChecked, _semanticModel, syntax, type, constantValue) @@ -511,7 +513,7 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim conversion As Conversion = _semanticModel.GetConversion(syntax) Dim isExplicit As Boolean = boundConversion.ExplicitCastInCode Dim isTryCast As Boolean = False - Dim isChecked = False + Dim isChecked As Boolean = False Dim type As ITypeSymbol = boundConversion.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundConversion.ConstantValueOpt) Return New LazyVisualBasicConversionExpression(operand, conversion, isExplicit, isTryCast, isChecked, _semanticModel, syntax, type, constantValue) @@ -523,7 +525,7 @@ Namespace Microsoft.CodeAnalysis.Semantics Dim conversion As Conversion = _semanticModel.GetConversion(syntax) Dim isExplicit As Boolean = Not boundUserDefinedConversion.WasCompilerGenerated Dim isTryCast As Boolean = False - Dim isChecked = False + Dim isChecked As Boolean = False Dim type As ITypeSymbol = boundUserDefinedConversion.Type Dim constantValue As [Optional](Of Object) = ConvertToOptional(boundUserDefinedConversion.ConstantValueOpt) Return New LazyVisualBasicConversionExpression(operand, conversion, isExplicit, isTryCast, isChecked, _semanticModel, syntax, type, constantValue) @@ -846,7 +848,7 @@ Namespace Microsoft.CodeAnalysis.Semantics Private Function CreateBoundRelationalCaseClauseOperation(boundRelationalCaseClause As BoundRelationalCaseClause) As IRelationalCaseClause Dim valueExpression = GetRelationalCaseClauseValue(boundRelationalCaseClause) Dim value As Lazy(Of IOperation) = New Lazy(Of IOperation)(Function() Create(valueExpression)) - Dim relation As BinaryOperatorKind = If(valueExpression IsNot Nothing, Helper.DeriveBinaryOperatorKind(boundRelationalCaseClause.OperatorKind), BinaryOperatorKind.Invalid) + Dim relation As BinaryOperatorKind = If(valueExpression IsNot Nothing, Helper.DeriveBinaryOperatorKind(boundRelationalCaseClause.OperatorKind, leftOpt:=Nothing), BinaryOperatorKind.Invalid) Dim CaseKind As CaseKind = CaseKind.Relational Dim syntax As SyntaxNode = boundRelationalCaseClause.Syntax Dim type As ITypeSymbol = Nothing diff --git a/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory_Methods.vb b/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory_Methods.vb index ff3d6d2c8a3..e12cbf7a8d5 100644 --- a/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory_Methods.vb +++ b/src/Compilers/VisualBasic/Portable/Operations/VisualBasicOperationFactory_Methods.vb @@ -297,7 +297,7 @@ Namespace Microsoft.CodeAnalysis.Semantics constantValue:=Nothing)) statements.Add(OperationFactory.CreateCompoundAssignmentExpressionStatement( controlVariable, stepOperand, - BinaryOperatorKind.Add, controlType.IsNullableType(), + BinaryOperatorKind.Add, controlType.IsNullableType(), False, Nothing, _semanticModel, stepValueExpression.Syntax)) End If End If @@ -463,7 +463,7 @@ Namespace Microsoft.CodeAnalysis.Semantics End Select End Function - Friend Shared Function DeriveBinaryOperatorKind(operatorKind As VisualBasic.BinaryOperatorKind) As BinaryOperatorKind + Friend Shared Function DeriveBinaryOperatorKind(operatorKind As VisualBasic.BinaryOperatorKind, leftOpt As BoundExpression) As BinaryOperatorKind Select Case operatorKind And VisualBasic.BinaryOperatorKind.OpMask Case VisualBasic.BinaryOperatorKind.Add Return BinaryOperatorKind.Add @@ -471,8 +471,10 @@ Namespace Microsoft.CodeAnalysis.Semantics Return BinaryOperatorKind.Subtract Case VisualBasic.BinaryOperatorKind.Multiply Return BinaryOperatorKind.Multiply - Case VisualBasic.BinaryOperatorKind.Divide, VisualBasic.BinaryOperatorKind.IntegerDivide + Case VisualBasic.BinaryOperatorKind.Divide Return BinaryOperatorKind.Divide + Case VisualBasic.BinaryOperatorKind.IntegerDivide + Return BinaryOperatorKind.IntegerDivide Case VisualBasic.BinaryOperatorKind.Modulo Return BinaryOperatorKind.Remainder Case VisualBasic.BinaryOperatorKind.And @@ -494,8 +496,12 @@ Namespace Microsoft.CodeAnalysis.Semantics Case VisualBasic.BinaryOperatorKind.LessThanOrEqual Return BinaryOperatorKind.LessThanOrEqual Case VisualBasic.BinaryOperatorKind.Equals - Return BinaryOperatorKind.Equals + Return If(leftOpt?.Type.SpecialType = SpecialType.System_Object, BinaryOperatorKind.ObjectValueEquals, BinaryOperatorKind.Equals) Case VisualBasic.BinaryOperatorKind.NotEquals + Return If(leftOpt?.Type.SpecialType = SpecialType.System_Object, BinaryOperatorKind.ObjectValueNotEquals, BinaryOperatorKind.NotEquals) + Case VisualBasic.BinaryOperatorKind.Is + Return BinaryOperatorKind.Equals + Case VisualBasic.BinaryOperatorKind.IsNot Return BinaryOperatorKind.NotEquals Case VisualBasic.BinaryOperatorKind.GreaterThanOrEqual Return BinaryOperatorKind.GreaterThanOrEqual @@ -503,6 +509,10 @@ Namespace Microsoft.CodeAnalysis.Semantics Return BinaryOperatorKind.GreaterThan Case VisualBasic.BinaryOperatorKind.Power Return BinaryOperatorKind.Power + Case VisualBasic.BinaryOperatorKind.Like + Return BinaryOperatorKind.Like + Case VisualBasic.BinaryOperatorKind.Concatenate + Return BinaryOperatorKind.Concatenate Case Else Return BinaryOperatorKind.Invalid End Select diff --git a/src/Compilers/VisualBasic/Test/Semantic/BasicCompilerSemanticTest.vbproj b/src/Compilers/VisualBasic/Test/Semantic/BasicCompilerSemanticTest.vbproj index 388a4e0eb52..bcfacef6008 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/BasicCompilerSemanticTest.vbproj +++ b/src/Compilers/VisualBasic/Test/Semantic/BasicCompilerSemanticTest.vbproj @@ -48,7 +48,6 @@ Resource.resx - diff --git a/src/Compilers/VisualBasic/Test/Semantic/Binding/BindingObjectInitializerTests.vb b/src/Compilers/VisualBasic/Test/Semantic/Binding/BindingObjectInitializerTests.vb index c9bc344da82..bcf47608b34 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/Binding/BindingObjectInitializerTests.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/Binding/BindingObjectInitializerTests.vb @@ -283,7 +283,7 @@ IObjectCreationExpression (Constructor: Sub C2..ctor()) (OperationKind.ObjectCre ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: ?, IsInvalid) (Syntax: 'Key .Field = 23') Left: IInvalidExpression (OperationKind.InvalidExpression, Type: ?, IsInvalid) (Syntax: 'Key .Field = 23') Children(0) - Right: IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: ?, IsInvalid) (Syntax: 'Key .Field = 23') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Equals, Checked) (OperationKind.BinaryOperatorExpression, Type: ?, IsInvalid) (Syntax: 'Key .Field = 23') Left: IInvalidExpression (OperationKind.InvalidExpression, Type: ?, IsInvalid) (Syntax: 'Key .Field') Children(1): IInvalidExpression (OperationKind.InvalidExpression, Type: ?, IsInvalid) (Syntax: 'Key .Field') diff --git a/src/Compilers/VisualBasic/Test/Semantic/Diagnostics/OperationAnalyzerTests.vb b/src/Compilers/VisualBasic/Test/Semantic/Diagnostics/OperationAnalyzerTests.vb index 90306f91424..9201b93a8c9 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/Diagnostics/OperationAnalyzerTests.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/Diagnostics/OperationAnalyzerTests.vb @@ -1663,7 +1663,7 @@ End Class Module Module1 - Sub Main() + Sub Main() Dim x, y As New B2() Dim r As B2 r = x + y @@ -1685,7 +1685,7 @@ Module Module1 r = x Or y r = x Xor y r = x << 2 - r = x >> 3 + r = x >> 3 End Sub End Module ]]> @@ -1695,26 +1695,26 @@ End Module Dim comp = CompilationUtils.CreateCompilationWithMscorlibAndVBRuntime(source, parseOptions:=TestOptions.RegularWithIOperationFeature) comp.VerifyDiagnostics() comp.VerifyAnalyzerDiagnostics({New BinaryOperatorVBTestAnalyzer}, Nothing, Nothing, False, - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x + y").WithArguments("Add").WithLocation(109, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x - y").WithArguments("Subtract").WithLocation(110, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x * y").WithArguments("Multiply").WithLocation(111, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x / y").WithArguments("Divide").WithLocation(112, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x \ y").WithArguments("Divide").WithLocation(113, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x Mod y").WithArguments("Remainder").WithLocation(114, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x ^ y").WithArguments("Power").WithLocation(115, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x = y").WithArguments("Equals").WithLocation(116, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x <> y").WithArguments("NotEquals").WithLocation(117, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x < y").WithArguments("LessThan").WithLocation(118, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x > y").WithArguments("GreaterThan").WithLocation(119, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x <= y").WithArguments("LessThanOrEqual").WithLocation(120, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x >= y").WithArguments("GreaterThanOrEqual").WithLocation(121, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x Like y").WithArguments("Invalid").WithLocation(122, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x & y").WithArguments("Invalid").WithLocation(123, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x And y").WithArguments("And").WithLocation(124, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x Or y").WithArguments("Or").WithLocation(125, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x Xor y").WithArguments("ExclusiveOr").WithLocation(126, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x << 2").WithArguments("LeftShift").WithLocation(127, 13), - Diagnostic(BinaryOperatorVBTestAnalyzer.BinaryUserDefinedOperatorDescriptor.Id, "x >> 3").WithArguments("RightShift").WithLocation(128, 13)) + Diagnostic("BinaryUserDefinedOperator", "x + y").WithArguments("Add").WithLocation(109, 13), + Diagnostic("BinaryUserDefinedOperator", "x - y").WithArguments("Subtract").WithLocation(110, 13), + Diagnostic("BinaryUserDefinedOperator", "x * y").WithArguments("Multiply").WithLocation(111, 13), + Diagnostic("BinaryUserDefinedOperator", "x / y").WithArguments("Divide").WithLocation(112, 13), + Diagnostic("BinaryUserDefinedOperator", "x \ y").WithArguments("IntegerDivide").WithLocation(113, 13), + Diagnostic("BinaryUserDefinedOperator", "x Mod y").WithArguments("Remainder").WithLocation(114, 13), + Diagnostic("BinaryUserDefinedOperator", "x ^ y").WithArguments("Power").WithLocation(115, 13), + Diagnostic("BinaryUserDefinedOperator", "x = y").WithArguments("Equals").WithLocation(116, 13), + Diagnostic("BinaryUserDefinedOperator", "x <> y").WithArguments("NotEquals").WithLocation(117, 13), + Diagnostic("BinaryUserDefinedOperator", "x < y").WithArguments("LessThan").WithLocation(118, 13), + Diagnostic("BinaryUserDefinedOperator", "x > y").WithArguments("GreaterThan").WithLocation(119, 13), + Diagnostic("BinaryUserDefinedOperator", "x <= y").WithArguments("LessThanOrEqual").WithLocation(120, 13), + Diagnostic("BinaryUserDefinedOperator", "x >= y").WithArguments("GreaterThanOrEqual").WithLocation(121, 13), + Diagnostic("BinaryUserDefinedOperator", "x Like y").WithArguments("Like").WithLocation(122, 13), + Diagnostic("BinaryUserDefinedOperator", "x & y").WithArguments("Concatenate").WithLocation(123, 13), + Diagnostic("BinaryUserDefinedOperator", "x And y").WithArguments("And").WithLocation(124, 13), + Diagnostic("BinaryUserDefinedOperator", "x Or y").WithArguments("Or").WithLocation(125, 13), + Diagnostic("BinaryUserDefinedOperator", "x Xor y").WithArguments("ExclusiveOr").WithLocation(126, 13), + Diagnostic("BinaryUserDefinedOperator", "x << 2").WithArguments("LeftShift").WithLocation(127, 13), + Diagnostic("BinaryUserDefinedOperator", "x >> 3").WithArguments("RightShift").WithLocation(128, 13)) End Sub diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests.vb index 0a72402b571..df8ce79d618 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests.vb @@ -76,7 +76,7 @@ End Module IExpressionStatement (OperationKind.ExpressionStatement, IsInvalid) (Syntax: 'x = x + 10') Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2, IsInvalid) (Syntax: 'x = x + 10') Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') - Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: B2, IsInvalid) (Syntax: 'x + 10') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: B2, IsInvalid) (Syntax: 'x + 10') Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10, IsInvalid) (Syntax: '10') ") @@ -106,7 +106,7 @@ IExpressionStatement (OperationKind.ExpressionStatement, IsInvalid) (Syntax: 'x IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'x = x + y') Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'x = x + y') Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') - Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperatorMethod: Function B2.op_Addition(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x + y') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperatorMethod: Function B2.op_Addition(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x + y') Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') ") @@ -235,7 +235,7 @@ End Class Dim expectedOperationTree = 0 T ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <> 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <> 0') Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'x') Right: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If x <> 0 T ... End If') diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.vb index 8695d97ca71..9a36531d75a 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBinaryOperatorExpression.vb @@ -1,4 +1,4 @@ -' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. Imports Microsoft.CodeAnalysis.VisualBasic.Syntax Imports Microsoft.CodeAnalysis.Test.Utilities @@ -20,8 +20,8 @@ Class C End Class ]]>.Value -Dim expectedOperationTree = .Value @@ -40,8 +40,8 @@ Class C End Class ]]>.Value -Dim expectedOperationTree = .Value @@ -66,8 +66,8 @@ Structure C End Structure ]]>.Value -Dim expectedOperationTree = .Value @@ -92,7 +92,7 @@ Structure C End Structure ]]>.Value -Dim expectedOperationTree = .Value -Dim expectedOperationTree = .Value @@ -144,7 +144,7 @@ Structure C End Structure ]]>.Value -Dim expectedOperationTree = .Value -Dim expectedOperationTree = .Value @@ -190,13 +190,956 @@ Structure C End Structure ]]>.Value -Dim expectedOperationTree = .Value VerifyOperationTreeForTest(Of BinaryExpressionSyntax)(source, expectedOperationTree) End Sub + + + + Public Sub TestBinaryOperators() + Dim source = y + r = x < y + r = x > y + r = x <= y + r = x >= y + r = x Like y + r = x & y + r = x And y + r = x Or y + r = x Xor y + r = x << 2 + r = x >> 3 + r = DirectCast(x, Object) = y + r = DirectCast(x, Object) <> y + End Sub +End Module]]>.Value + + Dim expectedOperationTree = y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x <> y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x <> y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <> y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x < y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x < y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x < y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.LessThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x < y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x > y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x > y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x > y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x > y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x <= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x <= y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x <= y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <= y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x >= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x >= y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x >= y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x >= y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Like y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x Like y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x Like y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Like, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x Like y') + Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'x') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x & y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x & y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x & y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'x & y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'x') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x And y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x And y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.And, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x And y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Or y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x Or y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Or, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x Or y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Xor y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x Xor y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x Xor y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x << 2') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x << 2') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x << 2') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x >> 3') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x >> 3') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.RightShift, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x >> 3') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILiteralExpression (Text: 3) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 3) (Syntax: '3') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = DirectC ... Object) = y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = DirectC ... Object) = y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'DirectCast( ... Object) = y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ObjectValueEquals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'DirectCast( ... Object) = y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'DirectCast(x, Object)') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = DirectC ... bject) <> y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = DirectC ... bject) <> y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'DirectCast( ... bject) <> y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ObjectValueNotEquals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'DirectCast( ... bject) <> y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'DirectCast(x, Object)') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + ILabelStatement (Label: exit) (OperationKind.LabelStatement) (Syntax: 'End Sub') + LabeledStatement: null + IReturnStatement (OperationKind.ReturnStatement) (Syntax: 'End Sub') + ReturnedValue: null +]]>.Value + + Dim expectedDiagnostics = String.Empty + + VerifyOperationTreeAndDiagnosticsForTest(Of MethodBlockSyntax)(source, expectedOperationTree, expectedDiagnostics) + End Sub + + + + Public Sub TestBinaryOperators_Unchecked() + Dim source = y + r = x < y + r = x > y + r = x <= y + r = x >= y + r = x Like y + r = x & y + r = x And y + r = x Or y + r = x Xor y + r = x << 2 + r = x >> 3 + r = DirectCast(x, Object) = y + r = DirectCast(x, Object) <> y + End Sub +End Module]]>.Value + + Dim expectedOperationTree = y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x <> y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x <> y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <> y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x < y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x < y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x < y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.LessThan) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x < y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x > y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x > y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x > y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x > y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x <= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x <= y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x <= y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <= y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x >= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x >= y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x >= y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x >= y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Like y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x Like y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x Like y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Like) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x Like y') + Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'x') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x & y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x & y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x & y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Concatenate) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'x & y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'x') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x And y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x And y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.And) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x And y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Or y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x Or y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Or) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x Or y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Xor y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x Xor y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x Xor y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x << 2') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x << 2') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.LeftShift) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x << 2') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x >> 3') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x >> 3') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.RightShift) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x >> 3') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: ILiteralExpression (Text: 3) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 3) (Syntax: '3') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = DirectC ... Object) = y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = DirectC ... Object) = y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'DirectCast( ... Object) = y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ObjectValueEquals) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'DirectCast( ... Object) = y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'DirectCast(x, Object)') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = DirectC ... bject) <> y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = DirectC ... bject) <> y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'DirectCast( ... bject) <> y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ObjectValueNotEquals) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'DirectCast( ... bject) <> y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'DirectCast(x, Object)') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'y') + ILabelStatement (Label: exit) (OperationKind.LabelStatement) (Syntax: 'End Sub') + LabeledStatement: null + IReturnStatement (OperationKind.ReturnStatement) (Syntax: 'End Sub') + ReturnedValue: null +]]>.Value + + Dim expectedDiagnostics = String.Empty + + Dim fileName = "a.vb" + Dim syntaxTree = Parse(source, fileName) + Dim references = DefaultVbReferences.Concat({ValueTupleRef, SystemRuntimeFacadeRef}) + Dim compilation = CreateCompilationWithMscorlib45AndVBRuntime({syntaxTree}, references:=references, options:=TestOptions.ReleaseDll.WithOverflowChecks(False)) + + VerifyOperationTreeAndDiagnosticsForTest(Of MethodBlockSyntax)(compilation, fileName, expectedOperationTree, expectedDiagnostics) + End Sub + + + + Public Sub TestBinaryOperator_CompareText() + Dim source = y + r = x < y + r = x > y + r = x <= y + r = x >= y + r = DirectCast(x, Object) = y + r = DirectCast(x, Object) <> y + End Sub +End Class]]>.Value + + Dim expectedOperationTree = y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x <> y') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x <> y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, Checked, CompareText) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <> y') + Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'x') + Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x < y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x < y') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x < y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.LessThan, Checked, CompareText) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x < y') + Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'x') + Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x > y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x > y') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x > y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked, CompareText) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x > y') + Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'x') + Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x <= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x <= y') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x <= y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, Checked, CompareText) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x <= y') + Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'x') + Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x >= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = x >= y') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x >= y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, Checked, CompareText) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'x >= y') + Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'x') + Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = DirectC ... Object) = y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = DirectC ... Object) = y') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'DirectCast( ... Object) = y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ObjectValueEquals, Checked, CompareText) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'DirectCast( ... Object) = y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'DirectCast(x, Object)') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = DirectC ... bject) <> y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'r = DirectC ... bject) <> y') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'DirectCast( ... bject) <> y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ObjectValueNotEquals, Checked, CompareText) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'DirectCast( ... bject) <> y') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'DirectCast(x, Object)') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'x') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'y') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') + ILabelStatement (Label: exit) (OperationKind.LabelStatement) (Syntax: 'End Sub') + LabeledStatement: null + IReturnStatement (OperationKind.ReturnStatement) (Syntax: 'End Sub') + ReturnedValue: null +]]>.Value + + Dim expectedDiagnostics = String.Empty + + VerifyOperationTreeAndDiagnosticsForTest(Of MethodBlockSyntax)(source, expectedOperationTree, expectedDiagnostics) + End Sub + + + + Public Sub TestUserDefinedBinaryOperators() + Dim source = (x As B2, y As B2) As B2 + System.Console.WriteLine("<>") + Return x + End Operator + + Public Shared Operator <(x As B2, y As B2) As B2 + System.Console.WriteLine("<") + Return x + End Operator + + Public Shared Operator >(x As B2, y As B2) As B2 + System.Console.WriteLine(">") + Return x + End Operator + + Public Shared Operator <=(x As B2, y As B2) As B2 + System.Console.WriteLine("<=") + Return x + End Operator + + Public Shared Operator >=(x As B2, y As B2) As B2 + System.Console.WriteLine(">=") + Return x + End Operator + + Public Shared Operator Like(x As B2, y As B2) As B2 + System.Console.WriteLine("Like") + Return x + End Operator + + Public Shared Operator &(x As B2, y As B2) As B2 + System.Console.WriteLine("&") + Return x + End Operator + + Public Shared Operator And(x As B2, y As B2) As B2 + System.Console.WriteLine("And") + Return x + End Operator + + Public Shared Operator Or(x As B2, y As B2) As B2 + System.Console.WriteLine("Or") + Return x + End Operator + + Public Shared Operator Xor(x As B2, y As B2) As B2 + System.Console.WriteLine("Xor") + Return x + End Operator + + Public Shared Operator <<(x As B2, y As Integer) As B2 + System.Console.WriteLine("<<") + Return x + End Operator + + Public Shared Operator >>(x As B2, y As Integer) As B2 + System.Console.WriteLine(">>") + Return x + End Operator +End Class + +Module Module1 + + Sub Main()'BIND:"Sub Main()" + Dim x, y As New B2() + Dim r As B2 + r = x + y + r = x - y + r = x * y + r = x / y + r = x \ y + r = x Mod y + r = x ^ y + r = x = y + r = x <> y + r = x < y + r = x > y + r = x <= y + r = x >= y + r = x Like y + r = x & y + r = x And y + r = x Or y + r = x Xor y + r = x << 2 + r = x >> 3 + End Sub +End Module]]>.Value + + Dim expectedOperationTree = y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x <> y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, Checked) (OperatorMethod: Function B2.op_Inequality(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x <> y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x < y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x < y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.LessThan, Checked) (OperatorMethod: Function B2.op_LessThan(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x < y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x > y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x > y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperatorMethod: Function B2.op_GreaterThan(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x > y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x <= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x <= y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, Checked) (OperatorMethod: Function B2.op_LessThanOrEqual(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x <= y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x >= y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x >= y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, Checked) (OperatorMethod: Function B2.op_GreaterThanOrEqual(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x >= y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Like y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x Like y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Like, Checked) (OperatorMethod: Function B2.op_Like(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x Like y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x & y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x & y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperatorMethod: Function B2.op_Concatenate(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x & y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x And y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x And y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.And, Checked) (OperatorMethod: Function B2.op_BitwiseAnd(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x And y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Or y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x Or y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Or, Checked) (OperatorMethod: Function B2.op_BitwiseOr(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x Or y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x Xor y') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x Xor y') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, Checked) (OperatorMethod: Function B2.op_ExclusiveOr(x As B2, y As B2) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x Xor y') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'y') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x << 2') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x << 2') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, Checked) (OperatorMethod: Function B2.op_LeftShift(x As B2, y As System.Int32) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x << 2') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') + IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'r = x >> 3') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: B2) (Syntax: 'r = x >> 3') + Left: ILocalReferenceExpression: r (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'r') + Right: IBinaryOperatorExpression (BinaryOperatorKind.RightShift, Checked) (OperatorMethod: Function B2.op_RightShift(x As B2, y As System.Int32) As B2) (OperationKind.BinaryOperatorExpression, Type: B2) (Syntax: 'x >> 3') + Left: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: B2) (Syntax: 'x') + Right: ILiteralExpression (Text: 3) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 3) (Syntax: '3') + ILabelStatement (Label: exit) (OperationKind.LabelStatement) (Syntax: 'End Sub') + LabeledStatement: null + IReturnStatement (OperationKind.ReturnStatement) (Syntax: 'End Sub') + ReturnedValue: null +]]>.Value + + Dim expectedDiagnostics = String.Empty + + VerifyOperationTreeAndDiagnosticsForTest(Of MethodBlockSyntax)(source, expectedOperationTree, expectedDiagnostics) + End Sub + + + + Public Sub TestEqualityBinaryOperators() + Dim source = c2 + End Sub +End Class]]>.Value + + Dim expectedOperationTree = c2') + Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Boolean) (Syntax: 'r = DirectC ... ject) <> c2') + Left: IParameterReferenceExpression: r (OperationKind.ParameterReferenceExpression, Type: System.Boolean) (Syntax: 'r') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'DirectCast( ... ject) <> c2') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ObjectValueNotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'DirectCast( ... ject) <> c2') + Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'DirectCast(c1, Object)') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IParameterReferenceExpression: c1 (OperationKind.ParameterReferenceExpression, Type: C) (Syntax: 'c1') + Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'c2') + Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) + Operand: IParameterReferenceExpression: c2 (OperationKind.ParameterReferenceExpression, Type: C) (Syntax: 'c2') + ILabelStatement (Label: exit) (OperationKind.LabelStatement) (Syntax: 'End Sub') + LabeledStatement: null + IReturnStatement (OperationKind.ReturnStatement) (Syntax: 'End Sub') + ReturnedValue: null +]]>.Value + + Dim expectedDiagnostics = String.Empty + + VerifyOperationTreeAndDiagnosticsForTest(Of MethodBlockSyntax)(source, expectedOperationTree, expectedDiagnostics) + End Sub End Class End Namespace diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBlockStatement_MethodBlocks.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBlockStatement_MethodBlocks.vb index 447938b2b50..a7c8f9aab30 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBlockStatement_MethodBlocks.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IBlockStatement_MethodBlocks.vb @@ -23,7 +23,7 @@ End Class]]>.Value Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -53,7 +53,7 @@ End Class]]>.Value Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -86,7 +86,7 @@ Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -121,7 +121,7 @@ Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -157,7 +157,7 @@ End Class]]>.Value Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -197,7 +197,7 @@ End Class]]>.Value Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -237,7 +237,7 @@ End Class]]>.Value Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -277,7 +277,7 @@ End Class]]>.Value Dim expectedOperationTree = 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') @@ -310,7 +310,7 @@ Dim expectedOperationTree = As System.Int32 IIfStatement (OperationKind.IfStatement) (Syntax: 'If 1 > 2 Th ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: '1 > 2') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') IfTrue: IBlockStatement (0 statements) (OperationKind.BlockStatement) (Syntax: 'If 1 > 2 Th ... End If') diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IConversionExpression.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IConversionExpression.vb index a2a8662c70c..f2e2967ac75 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IConversionExpression.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IConversionExpression.vb @@ -300,7 +300,7 @@ IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclaratio Variables: Local_1: a As System.Int32 Initializer: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, IsInvalid) (Syntax: 'b + c') Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: ?, IsInvalid) (Syntax: 'b + c') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: ?, IsInvalid) (Syntax: 'b + c') Left: IInvalidExpression (OperationKind.InvalidExpression, Type: ?, IsInvalid) (Syntax: 'b') Children(0) Right: IInvalidExpression (OperationKind.InvalidExpression, Type: ?, IsInvalid) (Syntax: 'c') @@ -1188,7 +1188,7 @@ IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclaratio Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Operand: IArrayCreationExpression (Element Type: System.Int32) (OperationKind.ArrayCreationExpression, Type: System.Int32()) (Syntax: 'New Integer(1) {}') Dimension Sizes(1): - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 2) (Syntax: '1') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 2) (Syntax: '1') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Initializer: IArrayInitializer (0 elements) (OperationKind.ArrayInitializer) (Syntax: '{}') @@ -1221,7 +1221,7 @@ IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclaratio Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Operand: IArrayCreationExpression (Element Type: System.Int32()) (OperationKind.ArrayCreationExpression, Type: System.Int32()()) (Syntax: 'New Integer(1)() {}') Dimension Sizes(1): - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 2) (Syntax: '1') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 2) (Syntax: '1') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Initializer: IArrayInitializer (0 elements) (OperationKind.ArrayInitializer) (Syntax: '{}') @@ -1681,7 +1681,7 @@ IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclaratio Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Operand: IArrayCreationExpression (Element Type: System.Char) (OperationKind.ArrayCreationExpression, Type: System.Char()) (Syntax: 'New Char(1) {}') Dimension Sizes(1): - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 2) (Syntax: '1') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 2) (Syntax: '1') Left: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Right: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') Initializer: IArrayInitializer (0 elements) (OperationKind.ArrayInitializer) (Syntax: '{}') @@ -2101,7 +2101,7 @@ IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclaratio IBlockStatement (3 statements, 1 locals) (OperationKind.BlockStatement) (Syntax: 'Function(num) num < 5') Locals: Local_1: As System.Boolean IReturnStatement (OperationKind.ReturnStatement) (Syntax: 'num < 5') - ReturnedValue: IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'num < 5') + ReturnedValue: IBinaryOperatorExpression (BinaryOperatorKind.LessThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'num < 5') Left: IParameterReferenceExpression: num (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'num') Right: ILiteralExpression (Text: 5) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 5) (Syntax: '5') ILabelStatement (Label: exit) (OperationKind.LabelStatement) (Syntax: 'Function(num) num < 5') diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IForEachLoopStatement.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IForEachLoopStatement.vb index 9cfe3368708..8df645ecf60 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IForEachLoopStatement.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IForEachLoopStatement.vb @@ -1,4 +1,4 @@ -' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +' Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. Imports Microsoft.CodeAnalysis.Semantics Imports Microsoft.CodeAnalysis.Test.Utilities @@ -107,7 +107,7 @@ IForEachLoopStatement (Iteration variable: null) (LoopKind.ForEach) (OperationKi Collection: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'x') Body: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'For Each y ... Next') IIfStatement (OperationKind.IfStatement) (Syntax: 'If y = "B"c ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'y = "B"c') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'y = "B"c') Left: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'y') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Char, Constant: B) (Syntax: '"B"c') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If y = "B"c ... End If') @@ -155,7 +155,7 @@ IForEachLoopStatement (Iteration variable: null) (LoopKind.ForEach) (OperationKi Collection: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'x') Body: IBlockStatement (2 statements) (OperationKind.BlockStatement) (Syntax: 'For Each y ... Next y, x') IIfStatement (OperationKind.IfStatement) (Syntax: 'If y = "B"c ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'y = "B"c') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'y = "B"c') Left: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'y') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Char, Constant: B) (Syntax: '"B"c') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If y = "B"c ... End If') @@ -424,7 +424,7 @@ End Class ]]>.Value -Dim expectedOperationTree = )) (Syntax: 'countries') Body: IBlockStatement (2 statements) (OperationKind.BlockStatement) (Syntax: 'For Each co ... Next') @@ -433,8 +433,8 @@ IForEachLoopStatement (Iteration variable: null) (LoopKind.ForEach) (OperationKi Instance Receiver: null Arguments(1): IArgument (ArgumentKind.Explicit, Matching Parameter: message) (OperationKind.Argument) (Syntax: 'country.Cou ... untry.Count') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'country.Cou ... untry.Count') - Left: IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'country.Cou ... & " count="') + IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'country.Cou ... untry.Count') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'country.Cou ... & " count="') Left: IPropertyReferenceExpression: ReadOnly Property .CountryName As System.String (OperationKind.PropertyReferenceExpression, Type: System.String) (Syntax: 'country.CountryName') Instance Receiver: ILocalReferenceExpression: country (OperationKind.LocalReferenceExpression, Type: ) (Syntax: 'country') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: " count=") (Syntax: '" count="') @@ -453,9 +453,9 @@ IForEachLoopStatement (Iteration variable: null) (LoopKind.ForEach) (OperationKi Instance Receiver: null Arguments(1): IArgument (ArgumentKind.Explicit, Matching Parameter: message) (OperationKind.Argument) (Syntax: '" " & cus ... stomer.City') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '" " & cus ... stomer.City') - Left: IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '" " & cus ... Name & " "') - Left: IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '" " & cus ... CompanyName') + IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '" " & cus ... stomer.City') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '" " & cus ... Name & " "') + Left: IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '" " & cus ... CompanyName') Left: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: " ") (Syntax: '" "') Right: IPropertyReferenceExpression: Property Customer.CompanyName As System.String (OperationKind.PropertyReferenceExpression, Type: System.String) (Syntax: 'customer.CompanyName') Instance Receiver: ILocalReferenceExpression: customer (OperationKind.LocalReferenceExpression, Type: Customer) (Syntax: 'customer') @@ -747,7 +747,7 @@ IForEachLoopStatement (Iteration variable: null) (LoopKind.ForEach) (OperationKi Body: IBlockStatement (2 statements) (OperationKind.BlockStatement) (Syntax: 'For Each s ... Next') IIfStatement (OperationKind.IfStatement) (Syntax: 'If (s = "on ... End If') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(s = "one")') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 's = "one"') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Equals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 's = "one"') Left: ILocalReferenceExpression: s (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 's') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "one") (Syntax: '"one"') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (s = "on ... End If') @@ -784,14 +784,14 @@ Class C End Class ]]>.Value -Dim expectedOperationTree = .Value Dim expectedOperationTree = ... lue = count') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 0') Left: ILocalReferenceExpression: count (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'count') Right: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If count > ... lue = count') @@ -56,7 +56,7 @@ End Module Dim expectedOperationTree = ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 0') Left: ILocalReferenceExpression: count (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'count') Right: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If count > ... End If') @@ -86,21 +86,21 @@ End Module]]>.Value Dim expectedOperationTree = ... ata - count') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 10') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 10') Left: ILocalReferenceExpression: count (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'count') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If count > ... ata - count') IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'data = data + count') Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'data = data + count') Left: ILocalReferenceExpression: data (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'data') - Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'data + count') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'data + count') Left: ILocalReferenceExpression: data (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'data') Right: ILocalReferenceExpression: count (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'count') IfFalse: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'Else data = data - count') IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'data = data - count') Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'data = data - count') Left: ILocalReferenceExpression: data (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'data') - Right: IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'data - count') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Subtract, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'data - count') Left: ILocalReferenceExpression: data (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'data') Right: ILocalReferenceExpression: count (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'count') ]]>.Value @@ -125,12 +125,12 @@ End Module]]>.Value Dim expectedOperationTree = 10 T ... rnValue = n') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If m > 10 T ... rnValue = n') IIfStatement (OperationKind.IfStatement) (Syntax: 'If n > 20 T ... rnValue = n') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') Left: ILocalReferenceExpression: n (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'n') Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If n > 20 T ... rnValue = n') @@ -162,7 +162,7 @@ End Class]]>.Value Dim expectedOperationTree = .Value Dim expectedOperationTree = 10 ... rnValue = n') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(m > 10 And n > 20)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10 And n > 20') - Left: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.And, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10 And n > 20') + Left: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') - Right: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') + Right: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') Left: ILocalReferenceExpression: n (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'n') Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (m > 10 ... rnValue = n') @@ -261,7 +261,7 @@ End Module]]>.Value Dim expectedOperationTree = ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'count > 0') Left: ILocalReferenceExpression: count (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'count') Right: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If count > ... End If') @@ -273,7 +273,7 @@ IIfStatement (OperationKind.IfStatement) (Syntax: 'If count > ... End If') IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'returnValue = -1') Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'returnValue = -1') Left: ILocalReferenceExpression: returnValue (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'returnValue') - Right: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -1) (Syntax: '-1') + Right: IUnaryOperatorExpression (UnaryOperatorKind.Minus, Checked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -1) (Syntax: '-1') Operand: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') ]]>.Value @@ -305,13 +305,13 @@ End Module]]>.Value Dim expectedOperationTree = 10) ... End If') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(m > 10)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (m > 10) ... End If') IIfStatement (OperationKind.IfStatement) (Syntax: 'If (n > 20) ... End If') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(n > 20)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') Left: ILocalReferenceExpression: n (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'n') Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (n > 20) ... End If') @@ -363,13 +363,13 @@ End Module]]>.Value Dim expectedOperationTree = 10) ... End If') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(m > 10)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 10') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (m > 10) ... End If') IIfStatement (OperationKind.IfStatement) (Syntax: 'If (n > 20) ... End If') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(n > 20)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 20') Left: ILocalReferenceExpression: n (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'n') Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (n > 20) ... End If') @@ -418,11 +418,11 @@ End Module Dim expectedOperationTree = = n ... End If') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(m >= n AndAlso m >= p)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm >= n AndAlso m >= p') - Left: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm >= n') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm >= n AndAlso m >= p') + Left: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm >= n') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILocalReferenceExpression: n (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'n') - Right: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm >= p') + Right: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm >= p') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILocalReferenceExpression: p (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'p') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (m >= n ... End If') @@ -464,7 +464,7 @@ End Module]]>.Value Dim expectedOperationTree = 20) ... End If') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(m > 20)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 20') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 20') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (m > 20) ... End If') @@ -478,7 +478,7 @@ IIfStatement (OperationKind.IfStatement) (Syntax: 'If (m > 20) ... End If') OutConversion: null IfFalse: IIfStatement (OperationKind.IfStatement) (Syntax: 'ElseIf (n > ... ("Result2")') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(n > 10)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 10') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 10') Left: ILocalReferenceExpression: n (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'n') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'ElseIf (n > ... ("Result2")') @@ -521,7 +521,7 @@ End Module]]>.Value Dim expectedOperationTree = 20) ... ("Result3")') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(m > 20)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 20') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'm > 20') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'm') Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20) (Syntax: '20') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (m > 20) ... ("Result3")') @@ -536,7 +536,7 @@ IIfStatement (OperationKind.IfStatement) (Syntax: 'If (m > 20) ... ("Result3")') IfFalse: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'Else If (n ... ("Result3")') IIfStatement (OperationKind.IfStatement) (Syntax: 'If (n > 10) ... ("Result3")') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean) (Syntax: '(n > 10)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 10') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'n > 10') Left: ILocalReferenceExpression: n (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'n') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If (n > 10) ... ("Result3")') @@ -585,7 +585,7 @@ End Module]]>.Value Dim expectedOperationTree = 20) ... Else') Condition: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Boolean, IsInvalid) (Syntax: '(m > 20)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, IsInvalid) (Syntax: 'm > 20') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, IsInvalid) (Syntax: 'm > 20') Left: ILocalReferenceExpression: m (OperationKind.LocalReferenceExpression, Type: System.Int32, IsInvalid) (Syntax: 'm') Right: ILiteralExpression (Text: 20) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 20, IsInvalid) (Syntax: '20') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement, IsInvalid) (Syntax: 'If (m > 20) ... Else') @@ -669,7 +669,7 @@ End Module]]>.Value Dim expectedOperationTree = .Value @@ -47,7 +47,7 @@ Class Class1 End Sub End Class]]>.Value -Dim expectedOperationTree = ) (Syntax: 'New With {' ... }') Initializers(2): ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: 'Key .Amount = x') @@ -57,7 +57,7 @@ IAnonymousObjectCreationExpression (OperationKind.AnonymousObjectCreationExpress ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.String) (Syntax: 'Key .Messag ... "Hello" + y') Left: IPropertyReferenceExpression: ReadOnly Property .Message As System.String (Static) (OperationKind.PropertyReferenceExpression, Type: System.String) (Syntax: 'Message') Instance Receiver: null - Right: IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '"Hello" + y') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Concatenate, Checked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '"Hello" + y') Left: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Hello") (Syntax: '"Hello"') Right: IParameterReferenceExpression: y (OperationKind.ParameterReferenceExpression, Type: System.String) (Syntax: 'y') ]]>.Value @@ -482,7 +482,7 @@ End Class]]>.Value Dim expectedOperationTree = .Value @@ -692,13 +692,13 @@ IOperation: (OperationKind.None) (Syntax: 'ReDim intArray(x, x, x)') IOperation: (OperationKind.None) (Syntax: 'intArray(x, x, x)') Children(4): ILocalReferenceExpression: intArray (OperationKind.LocalReferenceExpression, Type: System.Int32(,,)) (Syntax: 'intArray') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x') Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'x') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: 'x') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x') Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'x') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: 'x') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x') Left: IParameterReferenceExpression: x (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'x') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: 'x') ]]>.Value diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_ISymbolInitializer.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_ISymbolInitializer.vb index 4c78c53b063..09a9f22a4ea 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_ISymbolInitializer.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_ISymbolInitializer.vb @@ -179,7 +179,7 @@ End Class]]>.Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value @@ -44,7 +44,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -65,7 +65,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -86,7 +86,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -107,7 +107,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -128,7 +128,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -149,7 +149,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -170,7 +170,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -191,7 +191,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -212,7 +212,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -233,7 +233,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -254,7 +254,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -275,7 +275,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -296,7 +296,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -317,7 +317,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -338,7 +338,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -359,7 +359,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -380,7 +380,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -401,7 +401,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -422,7 +422,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -443,7 +443,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -464,7 +464,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -485,7 +485,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -506,7 +506,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -527,7 +527,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -548,7 +548,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -569,7 +569,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -590,7 +590,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -611,7 +611,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -632,7 +632,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -653,7 +653,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value @@ -1428,7 +1428,7 @@ End Enum Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value @@ -1888,7 +1888,7 @@ End Class]]>.Value Dim expectedOperationTree = .Value @@ -1921,7 +1921,7 @@ End Class]]>.Value Dim expectedOperationTree = .Value @@ -1948,7 +1948,7 @@ End Class]]>.Value Dim expectedOperationTree = .Value @@ -1967,7 +1967,7 @@ End Class ]]>.Value Dim expectedOperationTree = .Value @@ -1986,13 +1986,65 @@ End Class ]]>.Value Dim expectedOperationTree = .Value VerifyOperationTreeForTest(Of UnaryExpressionSyntax)(source, expectedOperationTree) End Sub + + + Public Sub VerifyUncheckedLiftedUnaryOperators1() + Dim source = .Value + + Dim expectedOperationTree = .Value + + Dim expectedDiagnostics = String.Empty + + Dim fileName = "a.vb" + Dim syntaxTree = Parse(source, fileName) + Dim references = DefaultVbReferences.Concat({ValueTupleRef, SystemRuntimeFacadeRef}) + Dim compilation = CreateCompilationWithMscorlib45AndVBRuntime({syntaxTree}, references:=references, options:=TestOptions.ReleaseDll.WithOverflowChecks(False)) + + VerifyOperationTreeAndDiagnosticsForTest(Of UnaryExpressionSyntax)(compilation, fileName, expectedOperationTree, expectedDiagnostics) + End Sub + + + + Public Sub VerifyUncheckedNonLiftedUnaryOperators1() + Dim source = .Value + + Dim expectedOperationTree = .Value + + Dim expectedDiagnostics = String.Empty + + Dim fileName = "a.vb" + Dim syntaxTree = Parse(source, fileName) + Dim references = DefaultVbReferences.Concat({ValueTupleRef, SystemRuntimeFacadeRef}) + Dim compilation = CreateCompilationWithMscorlib45AndVBRuntime({syntaxTree}, references:=references, options:=TestOptions.ReleaseDll.WithOverflowChecks(False)) + + VerifyOperationTreeAndDiagnosticsForTest(Of UnaryExpressionSyntax)(compilation, fileName, expectedOperationTree, expectedDiagnostics) + End Sub + Public Sub VerifyLiftedUserDefinedUnaryOperators1() diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IVariableDeclaration.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IVariableDeclaration.vb index 10f60d7ebfc..fd5e3ce7dbb 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IVariableDeclaration.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IVariableDeclaration.vb @@ -506,7 +506,7 @@ IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclaratio Variables: Local_1: i1 As System.Int32() Initializer: IArrayCreationExpression (Element Type: System.Int32) (OperationKind.ArrayCreationExpression, Type: System.Int32()) (Syntax: 'i1(2)') Dimension Sizes(1): - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 3) (Syntax: '2') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 3) (Syntax: '2') Left: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '2') Initializer: null diff --git a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IWhileUntilLoopStatement.vb b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IWhileUntilLoopStatement.vb index 4a1080ba5c8..b05eab6f980 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IWhileUntilLoopStatement.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/IOperation/IOperationTests_IWhileUntilLoopStatement.vb @@ -31,7 +31,7 @@ End Class Dim expectedOperationTree = ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 10') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 10') Left: ILocalReferenceExpression: value (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'value') Right: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If value > ... End If') @@ -121,7 +121,7 @@ End Class Dim expectedOperationTree = ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 5') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 5') Left: ILocalReferenceExpression: value (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'value') Right: ILiteralExpression (Text: 5) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 5) (Syntax: '5') IfTrue: IBlockStatement (2 statements) (OperationKind.BlockStatement) (Syntax: 'If value > ... End If') @@ -234,7 +234,7 @@ IWhileUntilLoopStatement (IsTopTest: True, IsWhile: True) (LoopKind.WhileUntil) InConversion: null OutConversion: null IIfStatement (OperationKind.IfStatement) (Syntax: 'If value > ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 100') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 100') Left: ILocalReferenceExpression: value (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'value') Right: ILiteralExpression (Text: 100) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 100) (Syntax: '100') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If value > ... End If') @@ -282,7 +282,7 @@ End Class Dim expectedOperationTree = = 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(InlineAssi ... alue)) >= 0') Left: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Int32) (Syntax: '(InlineAssi ... (i, value))') Operand: IInvocationExpression (Function Program.InlineAssignHelper(Of System.Int32)(ByRef target As System.Int32, value As System.Int32) As System.Int32) (OperationKind.InvocationExpression, Type: System.Int32) (Syntax: 'InlineAssig ... r(i, value)') Instance Receiver: null @@ -375,9 +375,9 @@ IWhileUntilLoopStatement (IsTopTest: True, IsWhile: True) (LoopKind.WhileUntil) Condition: ILiteralExpression (Text: True) (OperationKind.LiteralExpression, Type: System.Boolean, Constant: True) (Syntax: 'True') Body: IBlockStatement (2 statements) (OperationKind.BlockStatement) (Syntax: 'While True' ... End While') IIfStatement (OperationKind.IfStatement) (Syntax: 'If (number ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(number Mod 2) = 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(number Mod 2) = 0') Left: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Int32) (Syntax: '(number Mod 2)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'number Mod 2') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Remainder, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'number Mod 2') Left: IParameterReferenceExpression: number (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'number') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') Right: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') @@ -420,9 +420,9 @@ IWhileUntilLoopStatement (IsTopTest: True, IsWhile: True) (LoopKind.WhileUntil) Condition: ILiteralExpression (Text: True) (OperationKind.LiteralExpression, Type: System.Boolean, Constant: True) (Syntax: 'True') Body: IBlockStatement (4 statements) (OperationKind.BlockStatement) (Syntax: 'While True' ... End While') IIfStatement (OperationKind.IfStatement) (Syntax: 'If (number ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(number Mod 2) = 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.Equals, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '(number Mod 2) = 0') Left: IParenthesizedExpression (OperationKind.ParenthesizedExpression, Type: System.Int32) (Syntax: '(number Mod 2)') - Operand: IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'number Mod 2') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Remainder, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'number Mod 2') Left: IParameterReferenceExpression: number (OperationKind.ParameterReferenceExpression, Type: System.Int32) (Syntax: 'number') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2) (Syntax: '2') Right: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') @@ -479,7 +479,7 @@ IWhileUntilLoopStatement (IsTopTest: True, IsWhile: True) (LoopKind.WhileUntil) InConversion: null OutConversion: null IIfStatement (OperationKind.IfStatement) (Syntax: 'If value > ... End If') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 100') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'value > 100') Left: ILocalReferenceExpression: value (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'value') Right: ILiteralExpression (Text: 100) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 100) (Syntax: '100') IfTrue: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'If value > ... End If') @@ -538,7 +538,7 @@ End Class Dim expectedOperationTree = 0 ... End While') - Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'i > 0') + Condition: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'i > 0') Left: ILocalReferenceExpression: i (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: 'i') Right: ILiteralExpression (Text: 0) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 0) (Syntax: '0') Body: IBlockStatement (1 statements) (OperationKind.BlockStatement) (Syntax: 'While i > 0 ... End While') @@ -837,7 +837,7 @@ End Class Dim expectedOperationTree = 0') Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: ?, IsInvalid) (Syntax: 'System.Math ... x + 1) > 0') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, Checked) (OperationKind.BinaryOperatorExpression, Type: ?, IsInvalid) (Syntax: 'System.Math ... x + 1) > 0') Left: IInvalidExpression (OperationKind.InvalidExpression, Type: ?, IsInvalid) (Syntax: 'System.Math ... (x), x + 1)') Children(3): IOperation: (OperationKind.None) (Syntax: 'System.Math.Max') @@ -879,7 +879,7 @@ IWhileUntilLoopStatement (IsTopTest: True, IsWhile: True) (LoopKind.WhileUntil) Children(2): IOperation: (OperationKind.None, IsInvalid) (Syntax: 'System.Thre ... d.Decrement') ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'x') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x + 1') + IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'x + 1') Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'x') Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'x') @@ -893,7 +893,7 @@ IWhileUntilLoopStatement (IsTopTest: True, IsWhile: True) (LoopKind.WhileUntil) Left: ILocalReferenceExpression: y (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'y') Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'CSByte(x / 2)') Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'x / 2') + Operand: IBinaryOperatorExpression (BinaryOperatorKind.Divide, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'x / 2') Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'x') Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) Operand: ILocalReferenceExpression: x (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'x') @@ -1008,7 +1008,7 @@ End Module Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value @@ -241,10 +241,10 @@ Class Program End Class]]>.Value Dim expectedOperationTree = .Value Dim expectedOperationTree = .Value Dim expectedOperationTree = - ''' Looks up a localized string similar to IBlockStatement (6069 statements, 19 locals) (OperationKind.BlockStatement) (Syntax: 'Sub Main() ... End Sub') - ''' Locals: Local_1: BoFalse As System.Boolean - ''' Local_2: BoTrue As System.Boolean - ''' Local_3: SB As System.SByte - ''' Local_4: By As System.Byte - ''' Local_5: Sh As System.Int16 - ''' Local_6: US As System.UInt16 - ''' Local_7: [In] As System.Int32 - ''' Local_8: UI As System.UInt32 - ''' Local_9: Lo As System.Int64 - ''' Local_10: UL As System.UInt64 - ''' Local_11: De As System.Decimal - ''' Local_ [rest of string was truncated]";. - ''' - Friend Shared ReadOnly Property BinaryOperatorsTestBaseline1_OperationTree() As String - Get - Return ResourceManager.GetString("BinaryOperatorsTestBaseline1_OperationTree", resourceCulture) - End Get - End Property - ''' ''' Looks up a localized string similar to BC30452: Operator '+' is not defined for types 'Date' and 'Boolean'. ''' result = Da + BoFalse @@ -293,7 +272,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic.UnitTests.My.Resources ''' '''Module Module1 ''' - ''' Sub Main() 'BIND:"Sub Main()" + ''' Sub Main() ''' Dim BoFalse As Boolean ''' Dim BoTrue As Boolean ''' Dim SB As SByte @@ -303,7 +282,8 @@ Namespace Microsoft.CodeAnalysis.VisualBasic.UnitTests.My.Resources ''' Dim [In] As Integer ''' Dim UI As UInteger ''' Dim Lo As Long - ''' Dim U [rest of string was truncated]";. + ''' Dim UL As ULong + ''' [rest of string was truncated]";. ''' Friend Shared ReadOnly Property BinaryOperatorsTestSource1() As String Get diff --git a/src/Compilers/VisualBasic/Test/Semantic/Resource.resx b/src/Compilers/VisualBasic/Test/Semantic/Resource.resx index f17e6b19a64..f332c999c9c 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/Resource.resx +++ b/src/Compilers/VisualBasic/Test/Semantic/Resource.resx @@ -124,9 +124,6 @@ Semantics/BinaryOperatorsTestBaseline1.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 - - Semantics/BinaryOperatorsTestBaseline1_OperationTree.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 - Semantics/BinaryOperatorsTestBaseline2.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8 diff --git a/src/Compilers/VisualBasic/Test/Semantic/Semantics/AnonymousTypesTests.vb b/src/Compilers/VisualBasic/Test/Semantic/Semantics/AnonymousTypesTests.vb index 03aff028b3e..b97607fbb48 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/Semantics/AnonymousTypesTests.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/Semantics/AnonymousTypesTests.vb @@ -35,7 +35,7 @@ IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.Conve ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: '.c = .b + .a') Left: IPropertyReferenceExpression: Property .c As System.Int32 (Static) (OperationKind.PropertyReferenceExpression, Type: System.Int32) (Syntax: 'c') Instance Receiver: null - Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '.b + .a') + Right: IBinaryOperatorExpression (BinaryOperatorKind.Add, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '.b + .a') Left: IPropertyReferenceExpression: Property .b As System.Int32 (Static) (OperationKind.PropertyReferenceExpression, Type: System.Int32) (Syntax: '.b') Instance Receiver: null Right: IPropertyReferenceExpression: Property .a As System.Int32 (Static) (OperationKind.PropertyReferenceExpression, Type: System.Int32) (Syntax: '.a') @@ -656,7 +656,7 @@ End Module]]>.Value Dim expectedOperationTree = , IsInvalid) (Syntax: 'New With {a * 2}') Initializers(1): - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, IsInvalid) (Syntax: 'a * 2') + IBinaryOperatorExpression (BinaryOperatorKind.Multiply, Checked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, IsInvalid) (Syntax: 'a * 2') Left: ILocalReferenceExpression: a (OperationKind.LocalReferenceExpression, Type: System.Int32, IsInvalid) (Syntax: 'a') Right: ILiteralExpression (Text: 2) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 2, IsInvalid) (Syntax: '2') ]]>.Value diff --git a/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperators.vb b/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperators.vb index 25a07d84717..ed6520235ea 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperators.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperators.vb @@ -25,7 +25,7 @@ Namespace Microsoft.CodeAnalysis.VisualBasic.UnitTests.Semantics Try - Dim compilationDef = + Dim compilationDef = <%= My.Resources.Resource.PrintResultTestSource %> @@ -35,50 +35,17 @@ Namespace Microsoft.CodeAnalysis.VisualBasic.UnitTests.Semantics - Dim compilation = CompilationUtils.CreateCompilationWithMscorlibAndVBRuntime(compilationDef, TestOptions.ReleaseExe) - - Assert.True(compilation.Options.CheckOverflow) - - CompileAndVerify(compilation, expectedOutput:=My.Resources.Resource.BinaryOperatorsTestBaseline1) - - compilation = CompilationUtils.CreateCompilationWithMscorlibAndVBRuntime(compilationDef, TestOptions.ReleaseExe.WithOverflowChecks(False)) - - Assert.False(compilation.Options.CheckOverflow) - - CompileAndVerify(compilation, expectedOutput:=My.Resources.Resource.BinaryOperatorsTestBaseline1) - - Catch ex As Exception - Assert.Null(ex) - Finally - System.Threading.Thread.CurrentThread.CurrentCulture = currCulture - End Try - - End Sub - - - Public Sub Test1_IOperation() + Dim compilation = CompilationUtils.CreateCompilationWithMscorlibAndVBRuntime(compilationDef, TestOptions.ReleaseExe) - Dim currCulture = System.Threading.Thread.CurrentThread.CurrentCulture - System.Threading.Thread.CurrentThread.CurrentCulture = New System.Globalization.CultureInfo("en-US", useUserOverride:=False) + Assert.True(compilation.Options.CheckOverflow) - Try + CompileAndVerify(compilation, expectedOutput:=My.Resources.Resource.BinaryOperatorsTestBaseline1) - Dim compilationDef = - - - <%= My.Resources.Resource.PrintResultTestSource %> - - - <%= My.Resources.Resource.BinaryOperatorsTestSource1 %> - - - Dim compilation = CompilationUtils.CreateCompilationWithMscorlibAndVBRuntime(compilationDef, TestOptions.ReleaseExe) - - Dim expectedOperationTree = My.Resources.Resource.BinaryOperatorsTestBaseline1_OperationTree + compilation = CompilationUtils.CreateCompilationWithMscorlibAndVBRuntime(compilationDef, TestOptions.ReleaseExe.WithOverflowChecks(False)) - Dim expectedDiagnostics = String.Empty + Assert.False(compilation.Options.CheckOverflow) - VerifyOperationTreeAndDiagnosticsForTest(Of MethodBlockSyntax)(Compilation, "a.vb", expectedOperationTree, expectedDiagnostics) + CompileAndVerify(compilation, expectedOutput:=My.Resources.Resource.BinaryOperatorsTestBaseline1) Catch ex As Exception Assert.Null(ex) diff --git a/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestBaseline1_OperationTree.txt b/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestBaseline1_OperationTree.txt deleted file mode 100644 index 560cb6ddb72..00000000000 --- a/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestBaseline1_OperationTree.txt +++ /dev/null @@ -1,101888 +0,0 @@ -IBlockStatement (6069 statements, 19 locals) (OperationKind.BlockStatement) (Syntax: 'Sub Main() ... End Sub') - Locals: Local_1: BoFalse As System.Boolean - Local_2: BoTrue As System.Boolean - Local_3: SB As System.SByte - Local_4: By As System.Byte - Local_5: Sh As System.Int16 - Local_6: US As System.UInt16 - Local_7: [In] As System.Int32 - Local_8: UI As System.UInt32 - Local_9: Lo As System.Int64 - Local_10: UL As System.UInt64 - Local_11: De As System.Decimal - Local_12: Si As System.Single - Local_13: [Do] As System.Double - Local_14: St As System.String - Local_15: Ob As System.Object - Local_16: Tc As System.TypeCode - Local_17: Da As System.DateTime - Local_18: Ch As System.Char - Local_19: ChArray As System.Char() - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim BoFalse As Boolean') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'BoFalse') - Variables: Local_1: BoFalse As System.Boolean - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim BoTrue As Boolean') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'BoTrue') - Variables: Local_1: BoTrue As System.Boolean - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim SB As SByte') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'SB') - Variables: Local_1: SB As System.SByte - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim By As Byte') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'By') - Variables: Local_1: By As System.Byte - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim Sh As Short') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'Sh') - Variables: Local_1: Sh As System.Int16 - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim US As UShort') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'US') - Variables: Local_1: US As System.UInt16 - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim [In] As Integer') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: '[In]') - Variables: Local_1: [In] As System.Int32 - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim UI As UInteger') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'UI') - Variables: Local_1: UI As System.UInt32 - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim Lo As Long') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'Lo') - Variables: Local_1: Lo As System.Int64 - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim UL As ULong') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'UL') - Variables: Local_1: UL As System.UInt64 - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim De As Decimal') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'De') - Variables: Local_1: De As System.Decimal - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim Si As Single') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'Si') - Variables: Local_1: Si As System.Single - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim [Do] As Double') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: '[Do]') - Variables: Local_1: [Do] As System.Double - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim St As String') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'St') - Variables: Local_1: St As System.String - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim Ob As Object') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'Ob') - Variables: Local_1: Ob As System.Object - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim Tc As S ... em.TypeCode') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'Tc') - Variables: Local_1: Tc As System.TypeCode - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim Da As Date') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'Da') - Variables: Local_1: Da As System.DateTime - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim Ch As Char') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'Ch') - Variables: Local_1: Ch As System.Char - Initializer: null - IVariableDeclarationStatement (1 declarations) (OperationKind.VariableDeclarationStatement) (Syntax: 'Dim ChArray() As Char') - IVariableDeclaration (1 variables) (OperationKind.VariableDeclaration) (Syntax: 'ChArray()') - Variables: Local_1: ChArray As System.Char() - Initializer: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'BoFalse = False') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Boolean) (Syntax: 'BoFalse = False') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILiteralExpression (Text: False) (OperationKind.LiteralExpression, Type: System.Boolean, Constant: False) (Syntax: 'False') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'BoTrue = True') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Boolean) (Syntax: 'BoTrue = True') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILiteralExpression (Text: True) (OperationKind.LiteralExpression, Type: System.Boolean, Constant: True) (Syntax: 'True') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'SB = -1') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.SByte) (Syntax: 'SB = -1') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte, Constant: -1) (Syntax: '-1') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -1) (Syntax: '-1') - Operand: ILiteralExpression (Text: 1) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 1) (Syntax: '1') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Sh = -3') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int16) (Syntax: 'Sh = -3') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16, Constant: -3) (Syntax: '-3') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -3) (Syntax: '-3') - Operand: ILiteralExpression (Text: 3) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 3) (Syntax: '3') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: '[In] = -5') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: '[In] = -5') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -5) (Syntax: '-5') - Operand: ILiteralExpression (Text: 5) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 5) (Syntax: '5') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Lo = -7') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int64) (Syntax: 'Lo = -7') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64, Constant: -7) (Syntax: '-7') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -7) (Syntax: '-7') - Operand: ILiteralExpression (Text: 7) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 7) (Syntax: '7') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'De = -9D') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Decimal) (Syntax: 'De = -9D') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Decimal, Constant: -9) (Syntax: '-9D') - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Decimal, Constant: 9) (Syntax: '9D') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Si = 10') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Single) (Syntax: 'Si = 10') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single, Constant: 10) (Syntax: '10') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 10) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 10) (Syntax: '10') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: '[Do] = -11') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Double) (Syntax: '[Do] = -11') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: -11) (Syntax: '-11') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -11) (Syntax: '-11') - Operand: ILiteralExpression (Text: 11) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 11) (Syntax: '11') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'St = "12"') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.String) (Syntax: 'St = "12"') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "12") (Syntax: '"12"') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Ob = "-13"') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Object) (Syntax: 'Ob = "-13"') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '"-13"') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "-13") (Syntax: '"-13"') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Da = #8:30:00 AM#') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.DateTime) (Syntax: 'Da = #8:30:00 AM#') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.DateTime, Constant: 1/1/0001 8:30:00 AM) (Syntax: '#8:30:00 AM#') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Ch = "c"c') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Char) (Syntax: 'Ch = "c"c') - Left: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.Char, Constant: c) (Syntax: '"c"c') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Tc = TypeCode.Double') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.TypeCode) (Syntax: 'Tc = TypeCode.Double') - Left: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IFieldReferenceExpression: System.TypeCode.Double (Static) (OperationKind.FieldReferenceExpression, Type: System.TypeCode, Constant: 14) (Syntax: 'TypeCode.Double') - Instance Receiver: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'ChArray = "14"') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Char()) (Syntax: 'ChArray = "14"') - Left: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char()) (Syntax: '"14"') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "14") (Syntax: '"14"') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'By = 22') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Byte) (Syntax: 'By = 22') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Byte, Constant: 22) (Syntax: '22') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 22) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 22) (Syntax: '22') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'US = 24') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.UInt16) (Syntax: 'US = 24') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16, Constant: 24) (Syntax: '24') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 24) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 24) (Syntax: '24') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'UI = 26') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.UInt32) (Syntax: 'UI = 26') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32, Constant: 26) (Syntax: '26') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 26) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 26) (Syntax: '26') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'UL = 28') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.UInt64) (Syntax: 'UL = 28') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64, Constant: 28) (Syntax: '28') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 28) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 28) (Syntax: '28') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + BoFalse") (Syntax: '"BoFalse + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + BoTrue") (Syntax: '"BoFalse + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + SB") (Syntax: '"BoFalse + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + By") (Syntax: '"BoFalse + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse + By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + Sh") (Syntax: '"BoFalse + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + US") (Syntax: '"BoFalse + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse + US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + [In]") (Syntax: '"BoFalse + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + UI") (Syntax: '"BoFalse + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + Lo") (Syntax: '"BoFalse + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + UL") (Syntax: '"BoFalse + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + De") (Syntax: '"BoFalse + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + Si") (Syntax: '"BoFalse + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoFalse + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + [Do]") (Syntax: '"BoFalse + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + St") (Syntax: '"BoFalse + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + Ob") (Syntax: '"BoFalse + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse + Tc") (Syntax: '"BoFalse + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + BoFalse") (Syntax: '"BoTrue + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + BoTrue") (Syntax: '"BoTrue + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + SB") (Syntax: '"BoTrue + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + By") (Syntax: '"BoTrue + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue + By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + Sh") (Syntax: '"BoTrue + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + US") (Syntax: '"BoTrue + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue + US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + [In]") (Syntax: '"BoTrue + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + UI") (Syntax: '"BoTrue + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + Lo") (Syntax: '"BoTrue + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + UL") (Syntax: '"BoTrue + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + De") (Syntax: '"BoTrue + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + Si") (Syntax: '"BoTrue + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoTrue + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + [Do]") (Syntax: '"BoTrue + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + St") (Syntax: '"BoTrue + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + Ob") (Syntax: '"BoTrue + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue + Tc") (Syntax: '"BoTrue + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + BoFalse") (Syntax: '"SB + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB + BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + BoTrue") (Syntax: '"SB + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB + BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + SB") (Syntax: '"SB + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB + SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + By") (Syntax: '"SB + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB + By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + Sh") (Syntax: '"SB + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + US") (Syntax: '"SB + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB + US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + [In]") (Syntax: '"SB + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + UI") (Syntax: '"SB + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + Lo") (Syntax: '"SB + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + UL") (Syntax: '"SB + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + De") (Syntax: '"SB + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + Si") (Syntax: '"SB + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'SB + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + [Do]") (Syntax: '"SB + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + St") (Syntax: '"SB + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + Ob") (Syntax: '"SB + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB + Tc") (Syntax: '"SB + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + BoFalse") (Syntax: '"By + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + BoTrue") (Syntax: '"By + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + SB") (Syntax: '"By + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + By") (Syntax: '"By + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By + By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + Sh") (Syntax: '"By + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + US") (Syntax: '"By + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By + US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + [In]") (Syntax: '"By + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + UI") (Syntax: '"By + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + Lo") (Syntax: '"By + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + UL") (Syntax: '"By + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + De") (Syntax: '"By + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'By + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + Si") (Syntax: '"By + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'By + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + [Do]") (Syntax: '"By + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + St") (Syntax: '"By + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + Ob") (Syntax: '"By + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By + Tc") (Syntax: '"By + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + BoFalse") (Syntax: '"Sh + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh + BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + BoTrue") (Syntax: '"Sh + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh + BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + SB") (Syntax: '"Sh + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh + SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + By") (Syntax: '"Sh + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh + By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + Sh") (Syntax: '"Sh + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh + Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + US") (Syntax: '"Sh + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh + US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + [In]") (Syntax: '"Sh + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + UI") (Syntax: '"Sh + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + Lo") (Syntax: '"Sh + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + UL") (Syntax: '"Sh + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + De") (Syntax: '"Sh + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + Si") (Syntax: '"Sh + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Sh + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + [Do]") (Syntax: '"Sh + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + St") (Syntax: '"Sh + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + Ob") (Syntax: '"Sh + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh + Tc") (Syntax: '"Sh + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + BoFalse") (Syntax: '"US + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + BoTrue") (Syntax: '"US + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + SB") (Syntax: '"US + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + By") (Syntax: '"US + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US + By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + Sh") (Syntax: '"US + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + US") (Syntax: '"US + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US + US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + [In]") (Syntax: '"US + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + UI") (Syntax: '"US + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + Lo") (Syntax: '"US + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + UL") (Syntax: '"US + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + De") (Syntax: '"US + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'US + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + Si") (Syntax: '"US + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'US + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + [Do]") (Syntax: '"US + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + St") (Syntax: '"US + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + Ob") (Syntax: '"US + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US + Tc") (Syntax: '"US + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + BoFalse") (Syntax: '"[In] + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + BoTrue") (Syntax: '"[In] + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + SB") (Syntax: '"[In] + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + By") (Syntax: '"[In] + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + Sh") (Syntax: '"[In] + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + US") (Syntax: '"[In] + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + [In]") (Syntax: '"[In] + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + UI") (Syntax: '"[In] + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + Lo") (Syntax: '"[In] + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + UL") (Syntax: '"[In] + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + De") (Syntax: '"[In] + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + Si") (Syntax: '"[In] + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: '[In] + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + [Do]") (Syntax: '"[In] + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + St") (Syntax: '"[In] + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + Ob") (Syntax: '"[In] + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + Tc") (Syntax: '"[In] + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + BoFalse") (Syntax: '"UI + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + BoTrue") (Syntax: '"UI + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + SB") (Syntax: '"UI + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + By") (Syntax: '"UI + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI + By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + Sh") (Syntax: '"UI + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + US") (Syntax: '"UI + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI + US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + [In]") (Syntax: '"UI + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + UI") (Syntax: '"UI + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI + UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + Lo") (Syntax: '"UI + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + UL") (Syntax: '"UI + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + De") (Syntax: '"UI + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UI + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + Si") (Syntax: '"UI + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UI + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + [Do]") (Syntax: '"UI + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + St") (Syntax: '"UI + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + Ob") (Syntax: '"UI + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI + Tc") (Syntax: '"UI + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + BoFalse") (Syntax: '"Lo + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + BoTrue") (Syntax: '"Lo + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + SB") (Syntax: '"Lo + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + By") (Syntax: '"Lo + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + Sh") (Syntax: '"Lo + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + US") (Syntax: '"Lo + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + [In]") (Syntax: '"Lo + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + UI") (Syntax: '"Lo + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + Lo") (Syntax: '"Lo + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + UL") (Syntax: '"Lo + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + De") (Syntax: '"Lo + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + Si") (Syntax: '"Lo + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Lo + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + [Do]") (Syntax: '"Lo + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + St") (Syntax: '"Lo + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + Ob") (Syntax: '"Lo + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo + Tc") (Syntax: '"Lo + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo + Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + BoFalse") (Syntax: '"UL + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + BoTrue") (Syntax: '"UL + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + SB") (Syntax: '"UL + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + By") (Syntax: '"UL + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL + By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + Sh") (Syntax: '"UL + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + US") (Syntax: '"UL + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL + US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + [In]") (Syntax: '"UL + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + UI") (Syntax: '"UL + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL + UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + Lo") (Syntax: '"UL + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + UL") (Syntax: '"UL + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL + UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + De") (Syntax: '"UL + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + Si") (Syntax: '"UL + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UL + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + [Do]") (Syntax: '"UL + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + St") (Syntax: '"UL + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + Ob") (Syntax: '"UL + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL + Tc") (Syntax: '"UL + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + BoFalse") (Syntax: '"De + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + BoTrue") (Syntax: '"De + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + SB") (Syntax: '"De + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + By") (Syntax: '"De + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + Sh") (Syntax: '"De + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + US") (Syntax: '"De + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + [In]") (Syntax: '"De + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + UI") (Syntax: '"De + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + Lo") (Syntax: '"De + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + UL") (Syntax: '"De + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + De") (Syntax: '"De + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + Si") (Syntax: '"De + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'De + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + [Do]") (Syntax: '"De + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + St") (Syntax: '"De + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + Ob") (Syntax: '"De + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De + Tc") (Syntax: '"De + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De + Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + BoFalse") (Syntax: '"Si + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + BoTrue") (Syntax: '"Si + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + SB") (Syntax: '"Si + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + By") (Syntax: '"Si + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + Sh") (Syntax: '"Si + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + US") (Syntax: '"Si + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + [In]") (Syntax: '"Si + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + UI") (Syntax: '"Si + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + Lo") (Syntax: '"Si + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + UL") (Syntax: '"Si + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + De") (Syntax: '"Si + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + Si") (Syntax: '"Si + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + [Do]") (Syntax: '"Si + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + St") (Syntax: '"Si + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + Ob") (Syntax: '"Si + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si + Tc") (Syntax: '"Si + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si + Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + BoFalse") (Syntax: '"[Do] + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + BoTrue") (Syntax: '"[Do] + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + SB") (Syntax: '"[Do] + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + By") (Syntax: '"[Do] + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + Sh") (Syntax: '"[Do] + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + US") (Syntax: '"[Do] + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + [In]") (Syntax: '"[Do] + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + UI") (Syntax: '"[Do] + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + Lo") (Syntax: '"[Do] + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + UL") (Syntax: '"[Do] + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + De") (Syntax: '"[Do] + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + Si") (Syntax: '"[Do] + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + [Do]") (Syntax: '"[Do] + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + St") (Syntax: '"[Do] + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + Ob") (Syntax: '"[Do] + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] + Tc") (Syntax: '"[Do] + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] + Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + BoFalse") (Syntax: '"St + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + BoTrue") (Syntax: '"St + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + SB") (Syntax: '"St + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + By") (Syntax: '"St + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + Sh") (Syntax: '"St + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + US") (Syntax: '"St + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + [In]") (Syntax: '"St + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + UI") (Syntax: '"St + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + Lo") (Syntax: '"St + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + UL") (Syntax: '"St + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + De") (Syntax: '"St + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + Si") (Syntax: '"St + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + [Do]") (Syntax: '"St + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + St") (Syntax: '"St + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St + St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + Ob") (Syntax: '"St + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + Tc") (Syntax: '"St + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + BoFalse") (Syntax: '"Ob + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + BoTrue") (Syntax: '"Ob + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + SB") (Syntax: '"Ob + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + By") (Syntax: '"Ob + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + Sh") (Syntax: '"Ob + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + US") (Syntax: '"Ob + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + [In]") (Syntax: '"Ob + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + UI") (Syntax: '"Ob + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + Lo") (Syntax: '"Ob + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + UL") (Syntax: '"Ob + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + De") (Syntax: '"Ob + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + Si") (Syntax: '"Ob + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + [Do]") (Syntax: '"Ob + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + St") (Syntax: '"Ob + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + Ob") (Syntax: '"Ob + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + Tc") (Syntax: '"Ob + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + BoFalse") (Syntax: '"Tc + BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c + BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c + BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + BoTrue") (Syntax: '"Tc + BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + SB") (Syntax: '"Tc + SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + SB') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + By") (Syntax: '"Tc + By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + By') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + Sh") (Syntax: '"Tc + Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + US") (Syntax: '"Tc + US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + US') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + [In]") (Syntax: '"Tc + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + UI") (Syntax: '"Tc + UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + UI') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc + UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + Lo") (Syntax: '"Tc + Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc + Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + UL") (Syntax: '"Tc + UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + UL') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc + UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + De") (Syntax: '"Tc + De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + De') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc + De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + Si") (Syntax: '"Tc + Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + Si') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Tc + Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc + [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc + [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + [Do]") (Syntax: '"Tc + [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc + [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + St") (Syntax: '"Tc + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + St') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + Ob") (Syntax: '"Tc + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc + Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc + Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc + Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc + Tc") (Syntax: '"Tc + Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc + Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc + Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - BoFalse") (Syntax: '"BoFalse - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - BoTrue") (Syntax: '"BoFalse - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - SB") (Syntax: '"BoFalse - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - By") (Syntax: '"BoFalse - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse - By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - Sh") (Syntax: '"BoFalse - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - US") (Syntax: '"BoFalse - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse - US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - [In]") (Syntax: '"BoFalse - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - UI") (Syntax: '"BoFalse - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - Lo") (Syntax: '"BoFalse - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - UL") (Syntax: '"BoFalse - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - De") (Syntax: '"BoFalse - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - Si") (Syntax: '"BoFalse - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoFalse - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - [Do]") (Syntax: '"BoFalse - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - St") (Syntax: '"BoFalse - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - Ob") (Syntax: '"BoFalse - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse - Tc") (Syntax: '"BoFalse - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - BoFalse") (Syntax: '"BoTrue - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - BoTrue") (Syntax: '"BoTrue - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - SB") (Syntax: '"BoTrue - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - By") (Syntax: '"BoTrue - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue - By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - Sh") (Syntax: '"BoTrue - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - US") (Syntax: '"BoTrue - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue - US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - [In]") (Syntax: '"BoTrue - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - UI") (Syntax: '"BoTrue - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - Lo") (Syntax: '"BoTrue - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - UL") (Syntax: '"BoTrue - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - De") (Syntax: '"BoTrue - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - Si") (Syntax: '"BoTrue - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoTrue - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - [Do]") (Syntax: '"BoTrue - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - St") (Syntax: '"BoTrue - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - Ob") (Syntax: '"BoTrue - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue - Tc") (Syntax: '"BoTrue - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - BoFalse") (Syntax: '"SB - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB - BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - BoTrue") (Syntax: '"SB - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB - BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - SB") (Syntax: '"SB - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB - SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - By") (Syntax: '"SB - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB - By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - Sh") (Syntax: '"SB - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - US") (Syntax: '"SB - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB - US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - [In]") (Syntax: '"SB - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - UI") (Syntax: '"SB - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - Lo") (Syntax: '"SB - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - UL") (Syntax: '"SB - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - De") (Syntax: '"SB - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - Si") (Syntax: '"SB - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'SB - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - [Do]") (Syntax: '"SB - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - St") (Syntax: '"SB - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - Ob") (Syntax: '"SB - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB - Tc") (Syntax: '"SB - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - BoFalse") (Syntax: '"By - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - BoTrue") (Syntax: '"By - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - SB") (Syntax: '"By - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - By") (Syntax: '"By - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By - By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - Sh") (Syntax: '"By - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - [In]") (Syntax: '"By - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - Lo") (Syntax: '"By - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - De") (Syntax: '"By - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'By - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - Si") (Syntax: '"By - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'By - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - [Do]") (Syntax: '"By - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - St") (Syntax: '"By - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - Ob") (Syntax: '"By - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - Tc") (Syntax: '"By - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - BoFalse") (Syntax: '"Sh - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh - BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - BoTrue") (Syntax: '"Sh - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh - BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - SB") (Syntax: '"Sh - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh - SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - By") (Syntax: '"Sh - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh - By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - Sh") (Syntax: '"Sh - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh - Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - US") (Syntax: '"Sh - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh - US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - [In]") (Syntax: '"Sh - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - UI") (Syntax: '"Sh - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - Lo") (Syntax: '"Sh - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - UL") (Syntax: '"Sh - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - De") (Syntax: '"Sh - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - Si") (Syntax: '"Sh - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Sh - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - [Do]") (Syntax: '"Sh - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - St") (Syntax: '"Sh - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - Ob") (Syntax: '"Sh - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh - Tc") (Syntax: '"Sh - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - BoFalse") (Syntax: '"US - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - BoTrue") (Syntax: '"US - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - SB") (Syntax: '"US - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - By") (Syntax: '"US - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US - By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - Sh") (Syntax: '"US - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - US") (Syntax: '"US - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US - US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - [In]") (Syntax: '"US - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - Lo") (Syntax: '"US - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - De") (Syntax: '"US - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'US - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - Si") (Syntax: '"US - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'US - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - [Do]") (Syntax: '"US - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - St") (Syntax: '"US - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - Ob") (Syntax: '"US - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - Tc") (Syntax: '"US - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - BoFalse") (Syntax: '"[In] - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - BoTrue") (Syntax: '"[In] - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - SB") (Syntax: '"[In] - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - By") (Syntax: '"[In] - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - Sh") (Syntax: '"[In] - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - US") (Syntax: '"[In] - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - [In]") (Syntax: '"[In] - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - UI") (Syntax: '"[In] - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - Lo") (Syntax: '"[In] - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - UL") (Syntax: '"[In] - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - De") (Syntax: '"[In] - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - Si") (Syntax: '"[In] - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: '[In] - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - [Do]") (Syntax: '"[In] - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - St") (Syntax: '"[In] - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - Ob") (Syntax: '"[In] - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - Tc") (Syntax: '"[In] - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - BoFalse") (Syntax: '"UI - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - BoTrue") (Syntax: '"UI - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - SB") (Syntax: '"UI - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - By") (Syntax: '"UI - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI - By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - Sh") (Syntax: '"UI - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - US") (Syntax: '"UI - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI - US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - [In]") (Syntax: '"UI - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - UI") (Syntax: '"UI - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI - UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - Lo") (Syntax: '"UI - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - De") (Syntax: '"UI - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UI - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - Si") (Syntax: '"UI - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UI - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - [Do]") (Syntax: '"UI - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - St") (Syntax: '"UI - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - Ob") (Syntax: '"UI - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - Tc") (Syntax: '"UI - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - BoFalse") (Syntax: '"Lo - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - BoTrue") (Syntax: '"Lo - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - SB") (Syntax: '"Lo - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - By") (Syntax: '"Lo - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - Sh") (Syntax: '"Lo - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - US") (Syntax: '"Lo - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - [In]") (Syntax: '"Lo - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - UI") (Syntax: '"Lo - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - Lo") (Syntax: '"Lo - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - UL") (Syntax: '"Lo - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - De") (Syntax: '"Lo - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - Si") (Syntax: '"Lo - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Lo - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - [Do]") (Syntax: '"Lo - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - St") (Syntax: '"Lo - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - Ob") (Syntax: '"Lo - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo - Tc") (Syntax: '"Lo - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo - Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - BoFalse") (Syntax: '"UL - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - BoTrue") (Syntax: '"UL - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - SB") (Syntax: '"UL - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - By") (Syntax: '"UL - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL - By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - Sh") (Syntax: '"UL - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - US") (Syntax: '"UL - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL - US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - [In]") (Syntax: '"UL - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - UI") (Syntax: '"UL - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL - UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - Lo") (Syntax: '"UL - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - UL") (Syntax: '"UL - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL - UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - De") (Syntax: '"UL - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - Si") (Syntax: '"UL - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UL - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - [Do]") (Syntax: '"UL - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - St") (Syntax: '"UL - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - Ob") (Syntax: '"UL - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL - Tc") (Syntax: '"UL - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - BoFalse") (Syntax: '"De - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - BoTrue") (Syntax: '"De - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - SB") (Syntax: '"De - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - By") (Syntax: '"De - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - Sh") (Syntax: '"De - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - US") (Syntax: '"De - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - [In]") (Syntax: '"De - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - UI") (Syntax: '"De - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - Lo") (Syntax: '"De - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - UL") (Syntax: '"De - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - De") (Syntax: '"De - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - Si") (Syntax: '"De - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'De - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - [Do]") (Syntax: '"De - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - St") (Syntax: '"De - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - Ob") (Syntax: '"De - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De - Tc") (Syntax: '"De - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De - Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - BoFalse") (Syntax: '"Si - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - BoTrue") (Syntax: '"Si - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - SB") (Syntax: '"Si - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - By") (Syntax: '"Si - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - Sh") (Syntax: '"Si - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - US") (Syntax: '"Si - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - [In]") (Syntax: '"Si - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - UI") (Syntax: '"Si - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - Lo") (Syntax: '"Si - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - UL") (Syntax: '"Si - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - De") (Syntax: '"Si - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - Si") (Syntax: '"Si - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - [Do]") (Syntax: '"Si - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - St") (Syntax: '"Si - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - Ob") (Syntax: '"Si - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si - Tc") (Syntax: '"Si - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si - Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - BoFalse") (Syntax: '"[Do] - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - BoTrue") (Syntax: '"[Do] - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - SB") (Syntax: '"[Do] - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - By") (Syntax: '"[Do] - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - Sh") (Syntax: '"[Do] - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - US") (Syntax: '"[Do] - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - [In]") (Syntax: '"[Do] - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - UI") (Syntax: '"[Do] - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - Lo") (Syntax: '"[Do] - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - UL") (Syntax: '"[Do] - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - De") (Syntax: '"[Do] - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - Si") (Syntax: '"[Do] - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - [Do]") (Syntax: '"[Do] - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - St") (Syntax: '"[Do] - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - Ob") (Syntax: '"[Do] - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] - Tc") (Syntax: '"[Do] - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] - Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - BoFalse") (Syntax: '"St - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - BoTrue") (Syntax: '"St - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - SB") (Syntax: '"St - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - By") (Syntax: '"St - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - Sh") (Syntax: '"St - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - US") (Syntax: '"St - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - [In]") (Syntax: '"St - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - UI") (Syntax: '"St - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - Lo") (Syntax: '"St - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - UL") (Syntax: '"St - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - De") (Syntax: '"St - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - Si") (Syntax: '"St - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - [Do]") (Syntax: '"St - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - St") (Syntax: '"St - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - Ob") (Syntax: '"St - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - Tc") (Syntax: '"St - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - BoFalse") (Syntax: '"Ob - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - BoTrue") (Syntax: '"Ob - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - SB") (Syntax: '"Ob - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - By") (Syntax: '"Ob - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - Sh") (Syntax: '"Ob - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - US") (Syntax: '"Ob - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - [In]") (Syntax: '"Ob - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - UI") (Syntax: '"Ob - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - Lo") (Syntax: '"Ob - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - UL") (Syntax: '"Ob - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - De") (Syntax: '"Ob - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - Si") (Syntax: '"Ob - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - [Do]") (Syntax: '"Ob - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - St") (Syntax: '"Ob - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - Ob") (Syntax: '"Ob - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob - Tc") (Syntax: '"Ob - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob - Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - BoFalse") (Syntax: '"Tc - BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c - BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c - BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - BoTrue") (Syntax: '"Tc - BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - SB") (Syntax: '"Tc - SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - SB') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - By") (Syntax: '"Tc - By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - By') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - Sh") (Syntax: '"Tc - Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - US") (Syntax: '"Tc - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - [In]") (Syntax: '"Tc - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - UI") (Syntax: '"Tc - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - Lo") (Syntax: '"Tc - Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc - Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - UL") (Syntax: '"Tc - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - De") (Syntax: '"Tc - De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - De') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc - De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - Si") (Syntax: '"Tc - Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - Si') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Tc - Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc - [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc - [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - [Do]") (Syntax: '"Tc - [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc - [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - St") (Syntax: '"Tc - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - Ob") (Syntax: '"Tc - Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc - Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc - Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc - Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc - Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc - Tc") (Syntax: '"Tc - Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc - Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc - Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * BoFalse") (Syntax: '"BoFalse * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * BoTrue") (Syntax: '"BoFalse * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * SB") (Syntax: '"BoFalse * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * By") (Syntax: '"BoFalse * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse * By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * Sh") (Syntax: '"BoFalse * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * US") (Syntax: '"BoFalse * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse * US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * [In]") (Syntax: '"BoFalse * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * UI") (Syntax: '"BoFalse * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * Lo") (Syntax: '"BoFalse * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * UL") (Syntax: '"BoFalse * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * De") (Syntax: '"BoFalse * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * Si") (Syntax: '"BoFalse * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoFalse * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * [Do]") (Syntax: '"BoFalse * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * St") (Syntax: '"BoFalse * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * Ob") (Syntax: '"BoFalse * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse * Tc") (Syntax: '"BoFalse * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * BoFalse") (Syntax: '"BoTrue * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * BoTrue") (Syntax: '"BoTrue * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * SB") (Syntax: '"BoTrue * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * By") (Syntax: '"BoTrue * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue * By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * Sh") (Syntax: '"BoTrue * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * US") (Syntax: '"BoTrue * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue * US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * [In]") (Syntax: '"BoTrue * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * UI") (Syntax: '"BoTrue * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * Lo") (Syntax: '"BoTrue * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * UL") (Syntax: '"BoTrue * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * De") (Syntax: '"BoTrue * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * Si") (Syntax: '"BoTrue * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoTrue * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * [Do]") (Syntax: '"BoTrue * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * St") (Syntax: '"BoTrue * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * Ob") (Syntax: '"BoTrue * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue * Tc") (Syntax: '"BoTrue * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * BoFalse") (Syntax: '"SB * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB * BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * BoTrue") (Syntax: '"SB * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB * BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * SB") (Syntax: '"SB * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB * SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * By") (Syntax: '"SB * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB * By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * Sh") (Syntax: '"SB * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * US") (Syntax: '"SB * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB * US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * [In]") (Syntax: '"SB * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * UI") (Syntax: '"SB * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * Lo") (Syntax: '"SB * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * UL") (Syntax: '"SB * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * De") (Syntax: '"SB * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * Si") (Syntax: '"SB * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'SB * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * [Do]") (Syntax: '"SB * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * St") (Syntax: '"SB * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * Ob") (Syntax: '"SB * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB * Tc") (Syntax: '"SB * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * BoFalse") (Syntax: '"By * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * BoTrue") (Syntax: '"By * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * SB") (Syntax: '"By * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * Sh") (Syntax: '"By * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * US") (Syntax: '"By * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By * US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * [In]") (Syntax: '"By * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * UI") (Syntax: '"By * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * Lo") (Syntax: '"By * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * UL") (Syntax: '"By * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * De") (Syntax: '"By * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'By * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * Si") (Syntax: '"By * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'By * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * [Do]") (Syntax: '"By * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * St") (Syntax: '"By * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * Ob") (Syntax: '"By * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * Tc") (Syntax: '"By * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * BoFalse") (Syntax: '"Sh * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh * BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * BoTrue") (Syntax: '"Sh * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh * BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * SB") (Syntax: '"Sh * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh * SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * By") (Syntax: '"Sh * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh * By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * Sh") (Syntax: '"Sh * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh * Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * US") (Syntax: '"Sh * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh * US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * [In]") (Syntax: '"Sh * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * UI") (Syntax: '"Sh * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * Lo") (Syntax: '"Sh * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * UL") (Syntax: '"Sh * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * De") (Syntax: '"Sh * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * Si") (Syntax: '"Sh * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Sh * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * [Do]") (Syntax: '"Sh * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * St") (Syntax: '"Sh * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * Ob") (Syntax: '"Sh * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh * Tc") (Syntax: '"Sh * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * BoFalse") (Syntax: '"US * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * BoTrue") (Syntax: '"US * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * SB") (Syntax: '"US * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * By") (Syntax: '"US * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US * By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * Sh") (Syntax: '"US * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * US") (Syntax: '"US * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US * US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * [In]") (Syntax: '"US * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * UI") (Syntax: '"US * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * Lo") (Syntax: '"US * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * UL") (Syntax: '"US * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * De") (Syntax: '"US * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'US * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * Si") (Syntax: '"US * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'US * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * [Do]") (Syntax: '"US * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * St") (Syntax: '"US * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * Ob") (Syntax: '"US * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US * Tc") (Syntax: '"US * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * BoFalse") (Syntax: '"[In] * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * BoTrue") (Syntax: '"[In] * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * SB") (Syntax: '"[In] * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * By") (Syntax: '"[In] * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * Sh") (Syntax: '"[In] * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * US") (Syntax: '"[In] * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * [In]") (Syntax: '"[In] * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * UI") (Syntax: '"[In] * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * Lo") (Syntax: '"[In] * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * UL") (Syntax: '"[In] * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * De") (Syntax: '"[In] * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * Si") (Syntax: '"[In] * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: '[In] * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * [Do]") (Syntax: '"[In] * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * St") (Syntax: '"[In] * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * Ob") (Syntax: '"[In] * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * Tc") (Syntax: '"[In] * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * BoFalse") (Syntax: '"UI * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * BoTrue") (Syntax: '"UI * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * SB") (Syntax: '"UI * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * By") (Syntax: '"UI * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI * By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * Sh") (Syntax: '"UI * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * US") (Syntax: '"UI * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI * US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * [In]") (Syntax: '"UI * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * UI") (Syntax: '"UI * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI * UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * Lo") (Syntax: '"UI * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * UL") (Syntax: '"UI * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * De") (Syntax: '"UI * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UI * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * Si") (Syntax: '"UI * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UI * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * [Do]") (Syntax: '"UI * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * St") (Syntax: '"UI * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * Ob") (Syntax: '"UI * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI * Tc") (Syntax: '"UI * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * BoFalse") (Syntax: '"Lo * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * BoTrue") (Syntax: '"Lo * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * SB") (Syntax: '"Lo * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * By") (Syntax: '"Lo * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * Sh") (Syntax: '"Lo * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * US") (Syntax: '"Lo * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * [In]") (Syntax: '"Lo * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * UI") (Syntax: '"Lo * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * Lo") (Syntax: '"Lo * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * UL") (Syntax: '"Lo * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * De") (Syntax: '"Lo * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * Si") (Syntax: '"Lo * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Lo * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * [Do]") (Syntax: '"Lo * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * St") (Syntax: '"Lo * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * Ob") (Syntax: '"Lo * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo * Tc") (Syntax: '"Lo * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo * Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * BoFalse") (Syntax: '"UL * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * BoTrue") (Syntax: '"UL * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * SB") (Syntax: '"UL * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * By") (Syntax: '"UL * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL * By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * Sh") (Syntax: '"UL * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * US") (Syntax: '"UL * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL * US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * [In]") (Syntax: '"UL * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * UI") (Syntax: '"UL * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL * UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * Lo") (Syntax: '"UL * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * UL") (Syntax: '"UL * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL * UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * De") (Syntax: '"UL * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * Si") (Syntax: '"UL * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UL * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * [Do]") (Syntax: '"UL * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * St") (Syntax: '"UL * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * Ob") (Syntax: '"UL * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL * Tc") (Syntax: '"UL * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * BoFalse") (Syntax: '"De * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * BoTrue") (Syntax: '"De * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * SB") (Syntax: '"De * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * By") (Syntax: '"De * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * Sh") (Syntax: '"De * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * US") (Syntax: '"De * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * [In]") (Syntax: '"De * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * UI") (Syntax: '"De * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * Lo") (Syntax: '"De * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * UL") (Syntax: '"De * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * De") (Syntax: '"De * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * Si") (Syntax: '"De * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'De * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * [Do]") (Syntax: '"De * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * St") (Syntax: '"De * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * Ob") (Syntax: '"De * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De * Tc") (Syntax: '"De * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De * Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * BoFalse") (Syntax: '"Si * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * BoTrue") (Syntax: '"Si * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * SB") (Syntax: '"Si * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * By") (Syntax: '"Si * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * Sh") (Syntax: '"Si * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * US") (Syntax: '"Si * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * [In]") (Syntax: '"Si * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * UI") (Syntax: '"Si * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * Lo") (Syntax: '"Si * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * UL") (Syntax: '"Si * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * De") (Syntax: '"Si * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * Si") (Syntax: '"Si * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * [Do]") (Syntax: '"Si * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * St") (Syntax: '"Si * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * Ob") (Syntax: '"Si * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si * Tc") (Syntax: '"Si * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si * Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * BoFalse") (Syntax: '"[Do] * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * BoTrue") (Syntax: '"[Do] * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * SB") (Syntax: '"[Do] * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * By") (Syntax: '"[Do] * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * Sh") (Syntax: '"[Do] * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * US") (Syntax: '"[Do] * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * [In]") (Syntax: '"[Do] * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * UI") (Syntax: '"[Do] * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * Lo") (Syntax: '"[Do] * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * UL") (Syntax: '"[Do] * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * De") (Syntax: '"[Do] * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * Si") (Syntax: '"[Do] * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * [Do]") (Syntax: '"[Do] * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * St") (Syntax: '"[Do] * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * Ob") (Syntax: '"[Do] * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] * Tc") (Syntax: '"[Do] * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] * Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * BoFalse") (Syntax: '"St * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * BoTrue") (Syntax: '"St * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * SB") (Syntax: '"St * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * By") (Syntax: '"St * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * Sh") (Syntax: '"St * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * US") (Syntax: '"St * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * [In]") (Syntax: '"St * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * UI") (Syntax: '"St * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * Lo") (Syntax: '"St * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * UL") (Syntax: '"St * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * De") (Syntax: '"St * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * Si") (Syntax: '"St * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * [Do]") (Syntax: '"St * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * St") (Syntax: '"St * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * Ob") (Syntax: '"St * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * Tc") (Syntax: '"St * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * BoFalse") (Syntax: '"Ob * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * BoTrue") (Syntax: '"Ob * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * SB") (Syntax: '"Ob * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * By") (Syntax: '"Ob * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * Sh") (Syntax: '"Ob * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * US") (Syntax: '"Ob * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * [In]") (Syntax: '"Ob * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * UI") (Syntax: '"Ob * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * Lo") (Syntax: '"Ob * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * UL") (Syntax: '"Ob * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * De") (Syntax: '"Ob * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * Si") (Syntax: '"Ob * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * [Do]") (Syntax: '"Ob * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * St") (Syntax: '"Ob * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * Ob") (Syntax: '"Ob * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob * Tc") (Syntax: '"Ob * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob * Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * BoFalse") (Syntax: '"Tc * BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c * BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c * BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * BoTrue") (Syntax: '"Tc * BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * SB") (Syntax: '"Tc * SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * SB') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * By") (Syntax: '"Tc * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * Sh") (Syntax: '"Tc * Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * US") (Syntax: '"Tc * US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * US') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * [In]") (Syntax: '"Tc * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * UI") (Syntax: '"Tc * UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * UI') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc * UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * Lo") (Syntax: '"Tc * Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc * Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * UL") (Syntax: '"Tc * UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * UL') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc * UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * De") (Syntax: '"Tc * De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * De') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc * De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * Si") (Syntax: '"Tc * Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * Si') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Tc * Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc * [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc * [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * [Do]") (Syntax: '"Tc * [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc * [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * St") (Syntax: '"Tc * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * Ob") (Syntax: '"Tc * Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc * Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc * Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc * Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc * Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc * Tc") (Syntax: '"Tc * Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc * Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc * Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / BoFalse") (Syntax: '"BoFalse / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / BoTrue") (Syntax: '"BoFalse / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / SB") (Syntax: '"BoFalse / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / By") (Syntax: '"BoFalse / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / Sh") (Syntax: '"BoFalse / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / US") (Syntax: '"BoFalse / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / [In]") (Syntax: '"BoFalse / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / UI") (Syntax: '"BoFalse / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / Lo") (Syntax: '"BoFalse / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / UL") (Syntax: '"BoFalse / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / De") (Syntax: '"BoFalse / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / Si") (Syntax: '"BoFalse / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoFalse / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / [Do]") (Syntax: '"BoFalse / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / St") (Syntax: '"BoFalse / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / Ob") (Syntax: '"BoFalse / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse / Tc") (Syntax: '"BoFalse / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / BoFalse") (Syntax: '"BoTrue / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / BoTrue") (Syntax: '"BoTrue / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / SB") (Syntax: '"BoTrue / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / By") (Syntax: '"BoTrue / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / Sh") (Syntax: '"BoTrue / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / US") (Syntax: '"BoTrue / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / [In]") (Syntax: '"BoTrue / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / UI") (Syntax: '"BoTrue / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / Lo") (Syntax: '"BoTrue / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / UL") (Syntax: '"BoTrue / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / De") (Syntax: '"BoTrue / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / Si") (Syntax: '"BoTrue / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoTrue / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / [Do]") (Syntax: '"BoTrue / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / St") (Syntax: '"BoTrue / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / Ob") (Syntax: '"BoTrue / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue / Tc") (Syntax: '"BoTrue / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / BoFalse") (Syntax: '"SB / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / BoTrue") (Syntax: '"SB / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / SB") (Syntax: '"SB / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / By") (Syntax: '"SB / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / Sh") (Syntax: '"SB / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / US") (Syntax: '"SB / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / [In]") (Syntax: '"SB / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / UI") (Syntax: '"SB / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / Lo") (Syntax: '"SB / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / UL") (Syntax: '"SB / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / De") (Syntax: '"SB / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / Si") (Syntax: '"SB / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'SB / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / [Do]") (Syntax: '"SB / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / St") (Syntax: '"SB / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / Ob") (Syntax: '"SB / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB / Tc") (Syntax: '"SB / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / BoFalse") (Syntax: '"By / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / BoTrue") (Syntax: '"By / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / SB") (Syntax: '"By / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / By") (Syntax: '"By / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / Sh") (Syntax: '"By / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / US") (Syntax: '"By / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / [In]") (Syntax: '"By / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / UI") (Syntax: '"By / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / Lo") (Syntax: '"By / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / UL") (Syntax: '"By / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / De") (Syntax: '"By / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'By / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / Si") (Syntax: '"By / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'By / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / [Do]") (Syntax: '"By / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / St") (Syntax: '"By / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / Ob") (Syntax: '"By / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By / Tc") (Syntax: '"By / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / BoFalse") (Syntax: '"Sh / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / BoTrue") (Syntax: '"Sh / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / SB") (Syntax: '"Sh / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / By") (Syntax: '"Sh / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / Sh") (Syntax: '"Sh / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / US") (Syntax: '"Sh / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / [In]") (Syntax: '"Sh / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / UI") (Syntax: '"Sh / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / Lo") (Syntax: '"Sh / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / UL") (Syntax: '"Sh / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / De") (Syntax: '"Sh / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / Si") (Syntax: '"Sh / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Sh / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / [Do]") (Syntax: '"Sh / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / St") (Syntax: '"Sh / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / Ob") (Syntax: '"Sh / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh / Tc") (Syntax: '"Sh / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / BoFalse") (Syntax: '"US / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / BoTrue") (Syntax: '"US / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / SB") (Syntax: '"US / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / By") (Syntax: '"US / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / Sh") (Syntax: '"US / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / US") (Syntax: '"US / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / [In]") (Syntax: '"US / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / UI") (Syntax: '"US / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / Lo") (Syntax: '"US / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / UL") (Syntax: '"US / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / De") (Syntax: '"US / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'US / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / Si") (Syntax: '"US / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'US / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / [Do]") (Syntax: '"US / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / St") (Syntax: '"US / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / Ob") (Syntax: '"US / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US / Tc") (Syntax: '"US / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / BoFalse") (Syntax: '"[In] / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / BoTrue") (Syntax: '"[In] / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / SB") (Syntax: '"[In] / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / By") (Syntax: '"[In] / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / Sh") (Syntax: '"[In] / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / US") (Syntax: '"[In] / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / [In]") (Syntax: '"[In] / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / UI") (Syntax: '"[In] / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / Lo") (Syntax: '"[In] / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / UL") (Syntax: '"[In] / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / De") (Syntax: '"[In] / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / Si") (Syntax: '"[In] / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: '[In] / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / [Do]") (Syntax: '"[In] / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / St") (Syntax: '"[In] / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / Ob") (Syntax: '"[In] / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / Tc") (Syntax: '"[In] / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / BoFalse") (Syntax: '"UI / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / BoTrue") (Syntax: '"UI / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / SB") (Syntax: '"UI / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / By") (Syntax: '"UI / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / Sh") (Syntax: '"UI / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / US") (Syntax: '"UI / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / [In]") (Syntax: '"UI / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / UI") (Syntax: '"UI / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / Lo") (Syntax: '"UI / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / UL") (Syntax: '"UI / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / De") (Syntax: '"UI / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UI / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / Si") (Syntax: '"UI / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UI / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / [Do]") (Syntax: '"UI / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / St") (Syntax: '"UI / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / Ob") (Syntax: '"UI / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI / Tc") (Syntax: '"UI / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / BoFalse") (Syntax: '"Lo / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / BoTrue") (Syntax: '"Lo / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / SB") (Syntax: '"Lo / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / By") (Syntax: '"Lo / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / Sh") (Syntax: '"Lo / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / US") (Syntax: '"Lo / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / [In]") (Syntax: '"Lo / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / UI") (Syntax: '"Lo / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / Lo") (Syntax: '"Lo / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / UL") (Syntax: '"Lo / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / De") (Syntax: '"Lo / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / Si") (Syntax: '"Lo / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Lo / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / [Do]") (Syntax: '"Lo / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / St") (Syntax: '"Lo / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / Ob") (Syntax: '"Lo / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo / Tc") (Syntax: '"Lo / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / BoFalse") (Syntax: '"UL / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / BoTrue") (Syntax: '"UL / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / SB") (Syntax: '"UL / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / By") (Syntax: '"UL / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / Sh") (Syntax: '"UL / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / US") (Syntax: '"UL / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / [In]") (Syntax: '"UL / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / UI") (Syntax: '"UL / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / Lo") (Syntax: '"UL / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / UL") (Syntax: '"UL / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / De") (Syntax: '"UL / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / Si") (Syntax: '"UL / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UL / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / [Do]") (Syntax: '"UL / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / St") (Syntax: '"UL / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / Ob") (Syntax: '"UL / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL / Tc") (Syntax: '"UL / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / BoTrue") (Syntax: '"De / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / SB") (Syntax: '"De / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / By") (Syntax: '"De / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / Sh") (Syntax: '"De / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / US") (Syntax: '"De / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / [In]") (Syntax: '"De / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / UI") (Syntax: '"De / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / Lo") (Syntax: '"De / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / UL") (Syntax: '"De / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / De") (Syntax: '"De / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / Si") (Syntax: '"De / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'De / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / [Do]") (Syntax: '"De / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / St") (Syntax: '"De / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / Ob") (Syntax: '"De / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De / Tc") (Syntax: '"De / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De / Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / BoFalse") (Syntax: '"Si / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / BoTrue") (Syntax: '"Si / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / SB") (Syntax: '"Si / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / By") (Syntax: '"Si / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / Sh") (Syntax: '"Si / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / US") (Syntax: '"Si / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / [In]") (Syntax: '"Si / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / UI") (Syntax: '"Si / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / Lo") (Syntax: '"Si / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / UL") (Syntax: '"Si / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / De") (Syntax: '"Si / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / Si") (Syntax: '"Si / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / [Do]") (Syntax: '"Si / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / St") (Syntax: '"Si / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / Ob") (Syntax: '"Si / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si / Tc") (Syntax: '"Si / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si / Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / BoFalse") (Syntax: '"[Do] / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / BoTrue") (Syntax: '"[Do] / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / SB") (Syntax: '"[Do] / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / By") (Syntax: '"[Do] / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / Sh") (Syntax: '"[Do] / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / US") (Syntax: '"[Do] / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / [In]") (Syntax: '"[Do] / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / UI") (Syntax: '"[Do] / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / Lo") (Syntax: '"[Do] / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / UL") (Syntax: '"[Do] / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / De") (Syntax: '"[Do] / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / Si") (Syntax: '"[Do] / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / [Do]") (Syntax: '"[Do] / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / St") (Syntax: '"[Do] / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / Ob") (Syntax: '"[Do] / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] / Tc") (Syntax: '"[Do] / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] / Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / BoFalse") (Syntax: '"St / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / BoTrue") (Syntax: '"St / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / SB") (Syntax: '"St / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / By") (Syntax: '"St / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / Sh") (Syntax: '"St / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / US") (Syntax: '"St / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / [In]") (Syntax: '"St / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / UI") (Syntax: '"St / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / Lo") (Syntax: '"St / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / UL") (Syntax: '"St / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / De") (Syntax: '"St / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / Si") (Syntax: '"St / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / [Do]") (Syntax: '"St / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / St") (Syntax: '"St / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / Ob") (Syntax: '"St / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / Tc") (Syntax: '"St / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / BoFalse") (Syntax: '"Ob / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / BoTrue") (Syntax: '"Ob / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / SB") (Syntax: '"Ob / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / By") (Syntax: '"Ob / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / Sh") (Syntax: '"Ob / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / US") (Syntax: '"Ob / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / [In]") (Syntax: '"Ob / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / UI") (Syntax: '"Ob / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / Lo") (Syntax: '"Ob / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / UL") (Syntax: '"Ob / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / De") (Syntax: '"Ob / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / Si") (Syntax: '"Ob / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / [Do]") (Syntax: '"Ob / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / St") (Syntax: '"Ob / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / Ob") (Syntax: '"Ob / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob / Tc") (Syntax: '"Ob / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob / Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / BoFalse") (Syntax: '"Tc / BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c / BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c / BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / BoTrue") (Syntax: '"Tc / BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / SB") (Syntax: '"Tc / SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / By") (Syntax: '"Tc / By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / Sh") (Syntax: '"Tc / Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / US") (Syntax: '"Tc / US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / [In]") (Syntax: '"Tc / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / UI") (Syntax: '"Tc / UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / Lo") (Syntax: '"Tc / Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / UL") (Syntax: '"Tc / UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / De") (Syntax: '"Tc / De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc / De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / Si") (Syntax: '"Tc / Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Tc / Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc / [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc / [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / [Do]") (Syntax: '"Tc / [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / St") (Syntax: '"Tc / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / Ob") (Syntax: '"Tc / Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc / Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc / Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc / Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc / Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc / Tc") (Syntax: '"Tc / Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc / Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc / Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ BoTrue") (Syntax: '"BoFalse \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ SB") (Syntax: '"BoFalse \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ By") (Syntax: '"BoFalse \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ Sh") (Syntax: '"BoFalse \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ US") (Syntax: '"BoFalse \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ [In]") (Syntax: '"BoFalse \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ UI") (Syntax: '"BoFalse \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ Lo") (Syntax: '"BoFalse \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ UL") (Syntax: '"BoFalse \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ De") (Syntax: '"BoFalse \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ Si") (Syntax: '"BoFalse \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ [Do]") (Syntax: '"BoFalse \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ St") (Syntax: '"BoFalse \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ Ob") (Syntax: '"BoFalse \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse \ Tc") (Syntax: '"BoFalse \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ BoTrue") (Syntax: '"BoTrue \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ SB") (Syntax: '"BoTrue \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ By") (Syntax: '"BoTrue \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ Sh") (Syntax: '"BoTrue \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ US") (Syntax: '"BoTrue \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ [In]") (Syntax: '"BoTrue \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ UI") (Syntax: '"BoTrue \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ Lo") (Syntax: '"BoTrue \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ UL") (Syntax: '"BoTrue \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ De") (Syntax: '"BoTrue \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ Si") (Syntax: '"BoTrue \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ [Do]") (Syntax: '"BoTrue \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ St") (Syntax: '"BoTrue \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ Ob") (Syntax: '"BoTrue \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue \ Tc") (Syntax: '"BoTrue \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ BoTrue") (Syntax: '"SB \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB \ BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ SB") (Syntax: '"SB \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB \ SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ By") (Syntax: '"SB \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ Sh") (Syntax: '"SB \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ US") (Syntax: '"SB \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ [In]") (Syntax: '"SB \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ UI") (Syntax: '"SB \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ Lo") (Syntax: '"SB \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ UL") (Syntax: '"SB \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ De") (Syntax: '"SB \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ Si") (Syntax: '"SB \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ [Do]") (Syntax: '"SB \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ St") (Syntax: '"SB \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ Ob") (Syntax: '"SB \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB \ Tc") (Syntax: '"SB \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ BoTrue") (Syntax: '"By \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ SB") (Syntax: '"By \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ By") (Syntax: '"By \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By \ By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ Sh") (Syntax: '"By \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ US") (Syntax: '"By \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ [In]") (Syntax: '"By \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ UI") (Syntax: '"By \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ Lo") (Syntax: '"By \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ UL") (Syntax: '"By \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ De") (Syntax: '"By \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ Si") (Syntax: '"By \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ [Do]") (Syntax: '"By \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ St") (Syntax: '"By \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ Ob") (Syntax: '"By \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By \ Tc") (Syntax: '"By \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ BoTrue") (Syntax: '"Sh \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh \ BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ SB") (Syntax: '"Sh \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh \ SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ By") (Syntax: '"Sh \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh \ By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ Sh") (Syntax: '"Sh \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh \ Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ US") (Syntax: '"Sh \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ [In]") (Syntax: '"Sh \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ UI") (Syntax: '"Sh \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ Lo") (Syntax: '"Sh \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ UL") (Syntax: '"Sh \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ De") (Syntax: '"Sh \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ Si") (Syntax: '"Sh \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ [Do]") (Syntax: '"Sh \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ St") (Syntax: '"Sh \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ Ob") (Syntax: '"Sh \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh \ Tc") (Syntax: '"Sh \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ BoTrue") (Syntax: '"US \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ SB") (Syntax: '"US \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ By") (Syntax: '"US \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US \ By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ Sh") (Syntax: '"US \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ US") (Syntax: '"US \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US \ US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ [In]") (Syntax: '"US \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ UI") (Syntax: '"US \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ Lo") (Syntax: '"US \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ UL") (Syntax: '"US \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ De") (Syntax: '"US \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ Si") (Syntax: '"US \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ [Do]") (Syntax: '"US \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ St") (Syntax: '"US \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ Ob") (Syntax: '"US \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US \ Tc") (Syntax: '"US \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ BoTrue") (Syntax: '"[In] \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] \ BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ SB") (Syntax: '"[In] \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] \ SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ By") (Syntax: '"[In] \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] \ By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ Sh") (Syntax: '"[In] \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] \ Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ US") (Syntax: '"[In] \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] \ US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ [In]") (Syntax: '"[In] \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] \ [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ UI") (Syntax: '"[In] \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ Lo") (Syntax: '"[In] \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ UL") (Syntax: '"[In] \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ De") (Syntax: '"[In] \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ Si") (Syntax: '"[In] \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ [Do]") (Syntax: '"[In] \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ St") (Syntax: '"[In] \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ Ob") (Syntax: '"[In] \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] \ Tc") (Syntax: '"[In] \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] \ Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ BoTrue") (Syntax: '"UI \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ SB") (Syntax: '"UI \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ By") (Syntax: '"UI \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI \ By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ Sh") (Syntax: '"UI \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ US") (Syntax: '"UI \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI \ US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ [In]") (Syntax: '"UI \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ UI") (Syntax: '"UI \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI \ UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ Lo") (Syntax: '"UI \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ UL") (Syntax: '"UI \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ De") (Syntax: '"UI \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ Si") (Syntax: '"UI \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ [Do]") (Syntax: '"UI \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ St") (Syntax: '"UI \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ Ob") (Syntax: '"UI \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI \ Tc") (Syntax: '"UI \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ BoTrue") (Syntax: '"Lo \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ SB") (Syntax: '"Lo \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ By") (Syntax: '"Lo \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ Sh") (Syntax: '"Lo \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ US") (Syntax: '"Lo \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ [In]") (Syntax: '"Lo \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ UI") (Syntax: '"Lo \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ Lo") (Syntax: '"Lo \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ UL") (Syntax: '"Lo \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ UL') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ De") (Syntax: '"Lo \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ De') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ Si") (Syntax: '"Lo \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ Si') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ [Do]") (Syntax: '"Lo \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ [Do]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ St") (Syntax: '"Lo \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ St') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ Ob") (Syntax: '"Lo \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo \ Tc") (Syntax: '"Lo \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo \ Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ BoTrue") (Syntax: '"UL \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ SB") (Syntax: '"UL \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ By") (Syntax: '"UL \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL \ By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ Sh") (Syntax: '"UL \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ US") (Syntax: '"UL \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL \ US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ [In]") (Syntax: '"UL \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ UI") (Syntax: '"UL \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL \ UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ Lo") (Syntax: '"UL \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ UL") (Syntax: '"UL \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL \ UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ De") (Syntax: '"UL \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ Si") (Syntax: '"UL \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ [Do]") (Syntax: '"UL \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ St") (Syntax: '"UL \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ Ob") (Syntax: '"UL \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL \ Tc") (Syntax: '"UL \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ BoTrue") (Syntax: '"De \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ SB") (Syntax: '"De \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ By") (Syntax: '"De \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ Sh") (Syntax: '"De \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ US") (Syntax: '"De \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ [In]") (Syntax: '"De \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ UI") (Syntax: '"De \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ Lo") (Syntax: '"De \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ UL") (Syntax: '"De \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ De") (Syntax: '"De \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ Si") (Syntax: '"De \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ [Do]") (Syntax: '"De \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ St") (Syntax: '"De \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ Ob") (Syntax: '"De \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De \ Tc") (Syntax: '"De \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ BoTrue") (Syntax: '"Si \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ SB") (Syntax: '"Si \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ By") (Syntax: '"Si \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ Sh") (Syntax: '"Si \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ US") (Syntax: '"Si \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ [In]") (Syntax: '"Si \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ UI") (Syntax: '"Si \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ Lo") (Syntax: '"Si \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ UL") (Syntax: '"Si \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ De") (Syntax: '"Si \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ Si") (Syntax: '"Si \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ [Do]") (Syntax: '"Si \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ St") (Syntax: '"Si \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ Ob") (Syntax: '"Si \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si \ Tc") (Syntax: '"Si \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ BoTrue") (Syntax: '"[Do] \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ SB") (Syntax: '"[Do] \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ By") (Syntax: '"[Do] \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ Sh") (Syntax: '"[Do] \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ US") (Syntax: '"[Do] \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ [In]") (Syntax: '"[Do] \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ UI") (Syntax: '"[Do] \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ Lo") (Syntax: '"[Do] \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ UL") (Syntax: '"[Do] \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ De") (Syntax: '"[Do] \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ Si") (Syntax: '"[Do] \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ [Do]") (Syntax: '"[Do] \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ St") (Syntax: '"[Do] \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ Ob") (Syntax: '"[Do] \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] \ Tc") (Syntax: '"[Do] \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ BoTrue") (Syntax: '"St \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ SB") (Syntax: '"St \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ By") (Syntax: '"St \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ Sh") (Syntax: '"St \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ US") (Syntax: '"St \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ [In]") (Syntax: '"St \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ UI") (Syntax: '"St \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ Lo") (Syntax: '"St \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ UL") (Syntax: '"St \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ De") (Syntax: '"St \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ Si") (Syntax: '"St \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ [Do]") (Syntax: '"St \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ St") (Syntax: '"St \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ Ob") (Syntax: '"St \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St \ Tc") (Syntax: '"St \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ BoTrue") (Syntax: '"Ob \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ SB") (Syntax: '"Ob \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ By") (Syntax: '"Ob \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ Sh") (Syntax: '"Ob \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ US") (Syntax: '"Ob \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ [In]") (Syntax: '"Ob \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ UI") (Syntax: '"Ob \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ Lo") (Syntax: '"Ob \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ UL") (Syntax: '"Ob \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ De") (Syntax: '"Ob \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ Si") (Syntax: '"Ob \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ [Do]") (Syntax: '"Ob \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ St") (Syntax: '"Ob \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ Ob") (Syntax: '"Ob \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob \ Tc") (Syntax: '"Ob \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob \ Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c \ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c \ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ BoTrue") (Syntax: '"Tc \ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc \ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ SB") (Syntax: '"Tc \ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc \ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ By") (Syntax: '"Tc \ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ By') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc \ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ Sh") (Syntax: '"Tc \ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc \ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ US") (Syntax: '"Tc \ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ US') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc \ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ [In]") (Syntax: '"Tc \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ UI") (Syntax: '"Tc \ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc \ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ Lo") (Syntax: '"Tc \ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc \ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ UL") (Syntax: '"Tc \ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc \ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ De") (Syntax: '"Tc \ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ De') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc \ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ Si") (Syntax: '"Tc \ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc \ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc \ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc \ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ [Do]") (Syntax: '"Tc \ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc \ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ St") (Syntax: '"Tc \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ Ob") (Syntax: '"Tc \ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc \ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc \ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc \ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc \ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc \ Tc") (Syntax: '"Tc \ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc \ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc \ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod BoTrue") (Syntax: '"BoFalse Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod SB") (Syntax: '"BoFalse Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod By") (Syntax: '"BoFalse Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse Mod By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod Sh") (Syntax: '"BoFalse Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod US") (Syntax: '"BoFalse Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Mod US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod [In]") (Syntax: '"BoFalse Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod UI") (Syntax: '"BoFalse Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod Lo") (Syntax: '"BoFalse Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod UL") (Syntax: '"BoFalse Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod De") (Syntax: '"BoFalse Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoFalse Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod Si") (Syntax: '"BoFalse Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoFalse Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod [Do]") (Syntax: '"BoFalse Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod St") (Syntax: '"BoFalse Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod Ob") (Syntax: '"BoFalse Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Mod Tc") (Syntax: '"BoFalse Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod BoTrue") (Syntax: '"BoTrue Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod SB") (Syntax: '"BoTrue Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod By") (Syntax: '"BoTrue Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue Mod By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod Sh") (Syntax: '"BoTrue Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod US") (Syntax: '"BoTrue Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Mod US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod [In]") (Syntax: '"BoTrue Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod UI") (Syntax: '"BoTrue Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod Lo") (Syntax: '"BoTrue Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod UL") (Syntax: '"BoTrue Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod De") (Syntax: '"BoTrue Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'BoTrue Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod Si") (Syntax: '"BoTrue Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'BoTrue Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod [Do]") (Syntax: '"BoTrue Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod St") (Syntax: '"BoTrue Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod Ob") (Syntax: '"BoTrue Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Mod Tc") (Syntax: '"BoTrue Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod BoTrue") (Syntax: '"SB Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Mod BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod SB") (Syntax: '"SB Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Mod SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod By") (Syntax: '"SB Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB Mod By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod Sh") (Syntax: '"SB Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod US") (Syntax: '"SB Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Mod US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod [In]") (Syntax: '"SB Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod UI") (Syntax: '"SB Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod Lo") (Syntax: '"SB Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod UL") (Syntax: '"SB Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod De") (Syntax: '"SB Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'SB Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod Si") (Syntax: '"SB Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'SB Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod [Do]") (Syntax: '"SB Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod St") (Syntax: '"SB Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod Ob") (Syntax: '"SB Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Mod Tc") (Syntax: '"SB Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod BoTrue") (Syntax: '"By Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod SB") (Syntax: '"By Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod By") (Syntax: '"By Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By Mod By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod Sh") (Syntax: '"By Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod US") (Syntax: '"By Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By Mod US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod [In]") (Syntax: '"By Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod UI") (Syntax: '"By Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod Lo") (Syntax: '"By Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod UL") (Syntax: '"By Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod De") (Syntax: '"By Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'By Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod Si") (Syntax: '"By Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'By Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod [Do]") (Syntax: '"By Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod St") (Syntax: '"By Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod Ob") (Syntax: '"By Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Mod Tc") (Syntax: '"By Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod BoTrue") (Syntax: '"Sh Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Mod BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod SB") (Syntax: '"Sh Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Mod SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod By") (Syntax: '"Sh Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Mod By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod Sh") (Syntax: '"Sh Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Mod Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod US") (Syntax: '"Sh Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Mod US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod [In]") (Syntax: '"Sh Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod UI") (Syntax: '"Sh Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod Lo") (Syntax: '"Sh Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod UL") (Syntax: '"Sh Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod De") (Syntax: '"Sh Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Sh Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod Si") (Syntax: '"Sh Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Sh Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod [Do]") (Syntax: '"Sh Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod St") (Syntax: '"Sh Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod Ob") (Syntax: '"Sh Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Mod Tc") (Syntax: '"Sh Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod BoTrue") (Syntax: '"US Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod SB") (Syntax: '"US Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod By") (Syntax: '"US Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US Mod By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod Sh") (Syntax: '"US Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod US") (Syntax: '"US Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US Mod US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod [In]") (Syntax: '"US Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod UI") (Syntax: '"US Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod Lo") (Syntax: '"US Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod UL") (Syntax: '"US Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod De") (Syntax: '"US Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'US Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod Si") (Syntax: '"US Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'US Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod [Do]") (Syntax: '"US Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod St") (Syntax: '"US Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod Ob") (Syntax: '"US Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Mod Tc") (Syntax: '"US Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod BoTrue") (Syntax: '"[In] Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Mod BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod SB") (Syntax: '"[In] Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Mod SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod By") (Syntax: '"[In] Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Mod By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod Sh") (Syntax: '"[In] Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Mod Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod US") (Syntax: '"[In] Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Mod US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod [In]") (Syntax: '"[In] Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Mod [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod UI") (Syntax: '"[In] Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod Lo") (Syntax: '"[In] Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod UL") (Syntax: '"[In] Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod De") (Syntax: '"[In] Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: '[In] Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod Si") (Syntax: '"[In] Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: '[In] Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod [Do]") (Syntax: '"[In] Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod St") (Syntax: '"[In] Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod Ob") (Syntax: '"[In] Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Mod Tc") (Syntax: '"[In] Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Mod Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod BoTrue") (Syntax: '"UI Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod SB") (Syntax: '"UI Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod By") (Syntax: '"UI Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Mod By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod Sh") (Syntax: '"UI Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod US") (Syntax: '"UI Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Mod US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod [In]") (Syntax: '"UI Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod UI") (Syntax: '"UI Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Mod UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod Lo") (Syntax: '"UI Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod UL") (Syntax: '"UI Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod De") (Syntax: '"UI Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UI Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod Si") (Syntax: '"UI Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UI Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod [Do]") (Syntax: '"UI Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod St") (Syntax: '"UI Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod Ob") (Syntax: '"UI Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Mod Tc") (Syntax: '"UI Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod BoTrue") (Syntax: '"Lo Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod SB") (Syntax: '"Lo Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod By") (Syntax: '"Lo Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod Sh") (Syntax: '"Lo Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod US") (Syntax: '"Lo Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod [In]") (Syntax: '"Lo Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod UI") (Syntax: '"Lo Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod Lo") (Syntax: '"Lo Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod UL") (Syntax: '"Lo Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod De") (Syntax: '"Lo Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Lo Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod Si") (Syntax: '"Lo Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Lo Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod [Do]") (Syntax: '"Lo Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod St") (Syntax: '"Lo Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod Ob") (Syntax: '"Lo Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Mod Tc") (Syntax: '"Lo Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Mod Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod BoTrue") (Syntax: '"UL Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod SB") (Syntax: '"UL Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod By") (Syntax: '"UL Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Mod By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod Sh") (Syntax: '"UL Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod US") (Syntax: '"UL Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Mod US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod [In]") (Syntax: '"UL Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod UI") (Syntax: '"UL Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Mod UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod Lo") (Syntax: '"UL Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod UL") (Syntax: '"UL Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Mod UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod De") (Syntax: '"UL Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod Si") (Syntax: '"UL Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'UL Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod [Do]") (Syntax: '"UL Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod St") (Syntax: '"UL Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod Ob") (Syntax: '"UL Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Mod Tc") (Syntax: '"UL Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'UL Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod BoTrue") (Syntax: '"De Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod SB") (Syntax: '"De Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod By") (Syntax: '"De Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod Sh") (Syntax: '"De Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod US") (Syntax: '"De Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod [In]") (Syntax: '"De Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod UI") (Syntax: '"De Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod Lo") (Syntax: '"De Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod UL") (Syntax: '"De Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod De") (Syntax: '"De Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod Si") (Syntax: '"De Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'De Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod [Do]") (Syntax: '"De Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod St") (Syntax: '"De Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod Ob") (Syntax: '"De Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Mod Tc") (Syntax: '"De Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'De Mod Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod BoTrue") (Syntax: '"Si Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod SB") (Syntax: '"Si Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod By") (Syntax: '"Si Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod Sh") (Syntax: '"Si Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod US") (Syntax: '"Si Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod [In]") (Syntax: '"Si Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod UI") (Syntax: '"Si Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod Lo") (Syntax: '"Si Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod UL") (Syntax: '"Si Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod De") (Syntax: '"Si Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod Si") (Syntax: '"Si Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod [Do]") (Syntax: '"Si Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod St") (Syntax: '"Si Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod Ob") (Syntax: '"Si Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Mod Tc") (Syntax: '"Si Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Si Mod Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod BoTrue") (Syntax: '"[Do] Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod SB") (Syntax: '"[Do] Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod By") (Syntax: '"[Do] Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod Sh") (Syntax: '"[Do] Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod US") (Syntax: '"[Do] Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod [In]") (Syntax: '"[Do] Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod UI") (Syntax: '"[Do] Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod Lo") (Syntax: '"[Do] Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod UL") (Syntax: '"[Do] Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod De") (Syntax: '"[Do] Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod Si") (Syntax: '"[Do] Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod [Do]") (Syntax: '"[Do] Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod St") (Syntax: '"[Do] Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod Ob") (Syntax: '"[Do] Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Mod Tc") (Syntax: '"[Do] Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] Mod Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod BoTrue") (Syntax: '"St Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod SB") (Syntax: '"St Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod By") (Syntax: '"St Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod Sh") (Syntax: '"St Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod US") (Syntax: '"St Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod [In]") (Syntax: '"St Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod UI") (Syntax: '"St Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod Lo") (Syntax: '"St Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod UL") (Syntax: '"St Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod De") (Syntax: '"St Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod Si") (Syntax: '"St Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod [Do]") (Syntax: '"St Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod St") (Syntax: '"St Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod Ob") (Syntax: '"St Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod Tc") (Syntax: '"St Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod BoTrue") (Syntax: '"Ob Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod SB") (Syntax: '"Ob Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod By") (Syntax: '"Ob Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod Sh") (Syntax: '"Ob Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod US") (Syntax: '"Ob Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod [In]") (Syntax: '"Ob Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod UI") (Syntax: '"Ob Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod Lo") (Syntax: '"Ob Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod UL") (Syntax: '"Ob Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod De") (Syntax: '"Ob Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod Si") (Syntax: '"Ob Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod [Do]") (Syntax: '"Ob Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod St") (Syntax: '"Ob Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod Ob") (Syntax: '"Ob Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Mod Tc") (Syntax: '"Ob Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Mod Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Mod BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Mod BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod BoTrue") (Syntax: '"Tc Mod BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Mod BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod SB") (Syntax: '"Tc Mod SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod SB') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Mod SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod By") (Syntax: '"Tc Mod By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod By') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Mod By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod Sh") (Syntax: '"Tc Mod Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Mod Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod US") (Syntax: '"Tc Mod US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod US') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Mod US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod [In]") (Syntax: '"Tc Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod UI") (Syntax: '"Tc Mod UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod UI') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Mod UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod Lo") (Syntax: '"Tc Mod Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Mod Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod UL") (Syntax: '"Tc Mod UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod UL') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc Mod UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Decimal)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod De") (Syntax: '"Tc Mod De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod De') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Decimal) (Syntax: 'Tc Mod De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Single)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod Si") (Syntax: '"Tc Mod Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod Si') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Single) (Syntax: 'Tc Mod Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c Mod [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c Mod [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod [Do]") (Syntax: '"Tc Mod [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc Mod [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod St") (Syntax: '"Tc Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod Ob") (Syntax: '"Tc Mod Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc Mod Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Mod Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Mod Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Mod Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Mod Tc") (Syntax: '"Tc Mod Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Mod Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Mod Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ BoFalse") (Syntax: '"BoFalse ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ BoTrue") (Syntax: '"BoFalse ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ SB") (Syntax: '"BoFalse ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ By") (Syntax: '"BoFalse ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ Sh") (Syntax: '"BoFalse ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ US") (Syntax: '"BoFalse ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ [In]") (Syntax: '"BoFalse ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ UI") (Syntax: '"BoFalse ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ Lo") (Syntax: '"BoFalse ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ UL") (Syntax: '"BoFalse ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ De") (Syntax: '"BoFalse ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ Si") (Syntax: '"BoFalse ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ [Do]") (Syntax: '"BoFalse ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ St") (Syntax: '"BoFalse ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ Ob") (Syntax: '"BoFalse ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse ^ Tc") (Syntax: '"BoFalse ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoFalse ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ BoFalse") (Syntax: '"BoTrue ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ BoTrue") (Syntax: '"BoTrue ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ SB") (Syntax: '"BoTrue ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ By") (Syntax: '"BoTrue ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ Sh") (Syntax: '"BoTrue ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ US") (Syntax: '"BoTrue ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ [In]") (Syntax: '"BoTrue ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ UI") (Syntax: '"BoTrue ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ Lo") (Syntax: '"BoTrue ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ UL") (Syntax: '"BoTrue ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ De") (Syntax: '"BoTrue ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ Si") (Syntax: '"BoTrue ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ [Do]") (Syntax: '"BoTrue ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ St") (Syntax: '"BoTrue ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ Ob") (Syntax: '"BoTrue ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue ^ Tc") (Syntax: '"BoTrue ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'BoTrue ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ BoFalse") (Syntax: '"SB ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ BoTrue") (Syntax: '"SB ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ SB") (Syntax: '"SB ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ By") (Syntax: '"SB ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ Sh") (Syntax: '"SB ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ US") (Syntax: '"SB ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ [In]") (Syntax: '"SB ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ UI") (Syntax: '"SB ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ Lo") (Syntax: '"SB ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ UL") (Syntax: '"SB ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ De") (Syntax: '"SB ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ Si") (Syntax: '"SB ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ [Do]") (Syntax: '"SB ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ St") (Syntax: '"SB ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ Ob") (Syntax: '"SB ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB ^ Tc") (Syntax: '"SB ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'SB ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ BoFalse") (Syntax: '"By ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ BoTrue") (Syntax: '"By ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ SB") (Syntax: '"By ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ By") (Syntax: '"By ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ Sh") (Syntax: '"By ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ US") (Syntax: '"By ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ [In]") (Syntax: '"By ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ UI") (Syntax: '"By ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ Lo") (Syntax: '"By ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ UL") (Syntax: '"By ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ De") (Syntax: '"By ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ Si") (Syntax: '"By ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ [Do]") (Syntax: '"By ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ St") (Syntax: '"By ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ Ob") (Syntax: '"By ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By ^ Tc") (Syntax: '"By ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'By ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ BoFalse") (Syntax: '"Sh ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ BoTrue") (Syntax: '"Sh ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ SB") (Syntax: '"Sh ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ By") (Syntax: '"Sh ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ Sh") (Syntax: '"Sh ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ US") (Syntax: '"Sh ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ [In]") (Syntax: '"Sh ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ UI") (Syntax: '"Sh ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ Lo") (Syntax: '"Sh ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ UL") (Syntax: '"Sh ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ De") (Syntax: '"Sh ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ Si") (Syntax: '"Sh ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ [Do]") (Syntax: '"Sh ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ St") (Syntax: '"Sh ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ Ob") (Syntax: '"Sh ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh ^ Tc") (Syntax: '"Sh ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Sh ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ BoFalse") (Syntax: '"US ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ BoTrue") (Syntax: '"US ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ SB") (Syntax: '"US ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ By") (Syntax: '"US ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ Sh") (Syntax: '"US ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ US") (Syntax: '"US ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ [In]") (Syntax: '"US ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ UI") (Syntax: '"US ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ Lo") (Syntax: '"US ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ UL") (Syntax: '"US ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ De") (Syntax: '"US ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ Si") (Syntax: '"US ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ [Do]") (Syntax: '"US ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ St") (Syntax: '"US ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ Ob") (Syntax: '"US ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US ^ Tc") (Syntax: '"US ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'US ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ BoFalse") (Syntax: '"[In] ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ BoTrue") (Syntax: '"[In] ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ SB") (Syntax: '"[In] ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ By") (Syntax: '"[In] ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ Sh") (Syntax: '"[In] ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ US") (Syntax: '"[In] ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ [In]") (Syntax: '"[In] ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ UI") (Syntax: '"[In] ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ Lo") (Syntax: '"[In] ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ UL") (Syntax: '"[In] ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ De") (Syntax: '"[In] ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ Si") (Syntax: '"[In] ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ [Do]") (Syntax: '"[In] ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ St") (Syntax: '"[In] ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ Ob") (Syntax: '"[In] ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ Tc") (Syntax: '"[In] ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ BoFalse") (Syntax: '"UI ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ BoTrue") (Syntax: '"UI ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ SB") (Syntax: '"UI ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ By") (Syntax: '"UI ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ Sh") (Syntax: '"UI ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ US") (Syntax: '"UI ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ [In]") (Syntax: '"UI ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ UI") (Syntax: '"UI ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ Lo") (Syntax: '"UI ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ UL") (Syntax: '"UI ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ De") (Syntax: '"UI ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ Si") (Syntax: '"UI ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ [Do]") (Syntax: '"UI ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ St") (Syntax: '"UI ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ Ob") (Syntax: '"UI ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI ^ Tc") (Syntax: '"UI ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UI ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ BoFalse") (Syntax: '"Lo ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ BoTrue") (Syntax: '"Lo ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ SB") (Syntax: '"Lo ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ By") (Syntax: '"Lo ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ Sh") (Syntax: '"Lo ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ US") (Syntax: '"Lo ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ [In]") (Syntax: '"Lo ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ UI") (Syntax: '"Lo ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ Lo") (Syntax: '"Lo ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ UL") (Syntax: '"Lo ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ De") (Syntax: '"Lo ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ Si") (Syntax: '"Lo ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ [Do]") (Syntax: '"Lo ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ St") (Syntax: '"Lo ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ Ob") (Syntax: '"Lo ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo ^ Tc") (Syntax: '"Lo ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Lo ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ BoFalse") (Syntax: '"UL ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ BoTrue") (Syntax: '"UL ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ SB") (Syntax: '"UL ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ By") (Syntax: '"UL ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ Sh") (Syntax: '"UL ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ US") (Syntax: '"UL ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ [In]") (Syntax: '"UL ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ UI") (Syntax: '"UL ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ Lo") (Syntax: '"UL ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ UL") (Syntax: '"UL ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ De") (Syntax: '"UL ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ Si") (Syntax: '"UL ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ [Do]") (Syntax: '"UL ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ St") (Syntax: '"UL ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ Ob") (Syntax: '"UL ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL ^ Tc") (Syntax: '"UL ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'UL ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ BoFalse") (Syntax: '"De ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ BoTrue") (Syntax: '"De ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ SB") (Syntax: '"De ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ By") (Syntax: '"De ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ Sh") (Syntax: '"De ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ US") (Syntax: '"De ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ [In]") (Syntax: '"De ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ UI") (Syntax: '"De ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ Lo") (Syntax: '"De ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ UL") (Syntax: '"De ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ De") (Syntax: '"De ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ Si") (Syntax: '"De ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ [Do]") (Syntax: '"De ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ St") (Syntax: '"De ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ Ob") (Syntax: '"De ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De ^ Tc") (Syntax: '"De ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'De ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ BoFalse") (Syntax: '"Si ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ BoTrue") (Syntax: '"Si ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ SB") (Syntax: '"Si ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ By") (Syntax: '"Si ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ Sh") (Syntax: '"Si ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ US") (Syntax: '"Si ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ [In]") (Syntax: '"Si ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ UI") (Syntax: '"Si ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ Lo") (Syntax: '"Si ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ UL") (Syntax: '"Si ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ De") (Syntax: '"Si ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ Si") (Syntax: '"Si ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ [Do]") (Syntax: '"Si ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ St") (Syntax: '"Si ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ Ob") (Syntax: '"Si ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si ^ Tc") (Syntax: '"Si ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Si ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ BoFalse") (Syntax: '"[Do] ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ BoTrue") (Syntax: '"[Do] ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ SB") (Syntax: '"[Do] ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ By") (Syntax: '"[Do] ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ Sh") (Syntax: '"[Do] ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ US") (Syntax: '"[Do] ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ [In]") (Syntax: '"[Do] ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ UI") (Syntax: '"[Do] ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ Lo") (Syntax: '"[Do] ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ UL") (Syntax: '"[Do] ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ De") (Syntax: '"[Do] ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ Si") (Syntax: '"[Do] ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ [Do]") (Syntax: '"[Do] ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ St") (Syntax: '"[Do] ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ Ob") (Syntax: '"[Do] ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] ^ Tc") (Syntax: '"[Do] ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[Do] ^ Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ BoFalse") (Syntax: '"St ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ BoTrue") (Syntax: '"St ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ SB") (Syntax: '"St ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ By") (Syntax: '"St ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ Sh") (Syntax: '"St ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ US") (Syntax: '"St ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ [In]") (Syntax: '"St ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ UI") (Syntax: '"St ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ Lo") (Syntax: '"St ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ UL") (Syntax: '"St ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ De") (Syntax: '"St ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ Si") (Syntax: '"St ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ [Do]") (Syntax: '"St ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ St") (Syntax: '"St ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ Ob") (Syntax: '"St ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ Tc") (Syntax: '"St ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ BoFalse") (Syntax: '"Ob ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ BoTrue") (Syntax: '"Ob ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ SB") (Syntax: '"Ob ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ By") (Syntax: '"Ob ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ Sh") (Syntax: '"Ob ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ US") (Syntax: '"Ob ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ [In]") (Syntax: '"Ob ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ UI") (Syntax: '"Ob ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ Lo") (Syntax: '"Ob ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ UL") (Syntax: '"Ob ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ De") (Syntax: '"Ob ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ Si") (Syntax: '"Ob ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ [Do]") (Syntax: '"Ob ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ St") (Syntax: '"Ob ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ Ob") (Syntax: '"Ob ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob ^ Tc") (Syntax: '"Ob ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob ^ Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ BoFalse") (Syntax: '"Tc ^ BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c ^ BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c ^ BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ BoTrue") (Syntax: '"Tc ^ BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ SB") (Syntax: '"Tc ^ SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ SB') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ By") (Syntax: '"Tc ^ By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ By') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ Sh") (Syntax: '"Tc ^ Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ US") (Syntax: '"Tc ^ US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ US') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ [In]") (Syntax: '"Tc ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ UI") (Syntax: '"Tc ^ UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ UI') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ Lo") (Syntax: '"Tc ^ Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ UL") (Syntax: '"Tc ^ UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ UL') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ De") (Syntax: '"Tc ^ De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ De') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ Si") (Syntax: '"Tc ^ Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ Si') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc ^ [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc ^ [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ [Do]") (Syntax: '"Tc ^ [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ St") (Syntax: '"Tc ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ Ob") (Syntax: '"Tc ^ Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc ^ Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc ^ Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc ^ Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc ^ Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc ^ Tc") (Syntax: '"Tc ^ Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc ^ Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Tc ^ Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << BoFalse") (Syntax: '"BoFalse << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << BoTrue") (Syntax: '"BoFalse << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << SB") (Syntax: '"BoFalse << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << By") (Syntax: '"BoFalse << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << Sh") (Syntax: '"BoFalse << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << US") (Syntax: '"BoFalse << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << [In]") (Syntax: '"BoFalse << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << UI") (Syntax: '"BoFalse << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << Lo") (Syntax: '"BoFalse << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << UL") (Syntax: '"BoFalse << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << De") (Syntax: '"BoFalse << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << Si") (Syntax: '"BoFalse << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << [Do]") (Syntax: '"BoFalse << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << St") (Syntax: '"BoFalse << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << Ob") (Syntax: '"BoFalse << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse << Tc") (Syntax: '"BoFalse << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse << Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << BoFalse") (Syntax: '"BoTrue << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << BoTrue") (Syntax: '"BoTrue << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << SB") (Syntax: '"BoTrue << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << By") (Syntax: '"BoTrue << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << Sh") (Syntax: '"BoTrue << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << US") (Syntax: '"BoTrue << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << [In]") (Syntax: '"BoTrue << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << UI") (Syntax: '"BoTrue << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << Lo") (Syntax: '"BoTrue << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << UL") (Syntax: '"BoTrue << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << De") (Syntax: '"BoTrue << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << Si") (Syntax: '"BoTrue << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << [Do]") (Syntax: '"BoTrue << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << St") (Syntax: '"BoTrue << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << Ob") (Syntax: '"BoTrue << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue << Tc") (Syntax: '"BoTrue << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue << Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << BoFalse") (Syntax: '"SB << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << BoTrue") (Syntax: '"SB << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << SB") (Syntax: '"SB << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << By") (Syntax: '"SB << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << By') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << Sh") (Syntax: '"SB << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << Sh') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << US") (Syntax: '"SB << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << US') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << [In]") (Syntax: '"SB << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << [In]') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << UI") (Syntax: '"SB << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << UI') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << Lo") (Syntax: '"SB << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << Lo') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << UL") (Syntax: '"SB << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << UL') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << De") (Syntax: '"SB << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << De') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << Si") (Syntax: '"SB << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << Si') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << [Do]") (Syntax: '"SB << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << [Do]') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << St") (Syntax: '"SB << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << St') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << Ob") (Syntax: '"SB << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB << Tc") (Syntax: '"SB << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB << Tc') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << BoFalse") (Syntax: '"By << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << BoFalse') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << BoTrue") (Syntax: '"By << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << BoTrue') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << SB") (Syntax: '"By << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << SB') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << By") (Syntax: '"By << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << Sh") (Syntax: '"By << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << Sh') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << US") (Syntax: '"By << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << US') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << [In]") (Syntax: '"By << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << [In]') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << UI") (Syntax: '"By << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << UI') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << Lo") (Syntax: '"By << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << Lo') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << UL") (Syntax: '"By << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << UL') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << De") (Syntax: '"By << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << De') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << Si") (Syntax: '"By << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << Si') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << [Do]") (Syntax: '"By << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << [Do]') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << St") (Syntax: '"By << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << St') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << Ob") (Syntax: '"By << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By << Tc") (Syntax: '"By << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By << Tc') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << BoFalse") (Syntax: '"Sh << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << BoTrue") (Syntax: '"Sh << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << SB") (Syntax: '"Sh << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << By") (Syntax: '"Sh << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << Sh") (Syntax: '"Sh << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << US") (Syntax: '"Sh << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << US') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << [In]") (Syntax: '"Sh << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << [In]') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << UI") (Syntax: '"Sh << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << UI') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << Lo") (Syntax: '"Sh << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << Lo') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << UL") (Syntax: '"Sh << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << UL') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << De") (Syntax: '"Sh << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << De') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << Si") (Syntax: '"Sh << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << Si') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << [Do]") (Syntax: '"Sh << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << [Do]') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << St") (Syntax: '"Sh << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << St') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << Ob") (Syntax: '"Sh << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh << Tc") (Syntax: '"Sh << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh << Tc') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << BoFalse") (Syntax: '"US << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << BoFalse') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << BoTrue") (Syntax: '"US << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << BoTrue') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << SB") (Syntax: '"US << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << SB') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << By") (Syntax: '"US << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << Sh") (Syntax: '"US << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << Sh') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << US") (Syntax: '"US << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << [In]") (Syntax: '"US << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << [In]') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << UI") (Syntax: '"US << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << UI') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << Lo") (Syntax: '"US << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << Lo') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << UL") (Syntax: '"US << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << UL') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << De") (Syntax: '"US << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << De') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << Si") (Syntax: '"US << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << Si') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << [Do]") (Syntax: '"US << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << [Do]') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << St") (Syntax: '"US << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << St') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << Ob") (Syntax: '"US << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US << Tc") (Syntax: '"US << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US << Tc') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << BoFalse") (Syntax: '"[In] << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << BoTrue") (Syntax: '"[In] << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << SB") (Syntax: '"[In] << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << By") (Syntax: '"[In] << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << Sh") (Syntax: '"[In] << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << US") (Syntax: '"[In] << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << [In]") (Syntax: '"[In] << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << UI") (Syntax: '"[In] << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << UI') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << Lo") (Syntax: '"[In] << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << Lo') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << UL") (Syntax: '"[In] << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << UL') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << De") (Syntax: '"[In] << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << De') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << Si") (Syntax: '"[In] << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << Si') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << [Do]") (Syntax: '"[In] << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << [Do]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << St") (Syntax: '"[In] << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << St') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << Ob") (Syntax: '"[In] << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << Tc") (Syntax: '"[In] << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << BoFalse") (Syntax: '"UI << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << BoFalse') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << BoTrue") (Syntax: '"UI << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << BoTrue') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << SB") (Syntax: '"UI << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << SB') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << By") (Syntax: '"UI << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << Sh") (Syntax: '"UI << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << Sh') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << US") (Syntax: '"UI << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << [In]") (Syntax: '"UI << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << [In]') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << UI") (Syntax: '"UI << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << Lo") (Syntax: '"UI << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << Lo') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << UL") (Syntax: '"UI << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << UL') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << De") (Syntax: '"UI << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << De') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << Si") (Syntax: '"UI << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << Si') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << [Do]") (Syntax: '"UI << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << [Do]') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << St") (Syntax: '"UI << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << St') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << Ob") (Syntax: '"UI << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI << Tc") (Syntax: '"UI << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI << Tc') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << BoFalse") (Syntax: '"Lo << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << BoTrue") (Syntax: '"Lo << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << SB") (Syntax: '"Lo << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << By") (Syntax: '"Lo << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << Sh") (Syntax: '"Lo << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << US") (Syntax: '"Lo << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << [In]") (Syntax: '"Lo << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << UI") (Syntax: '"Lo << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << Lo") (Syntax: '"Lo << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << UL") (Syntax: '"Lo << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << UL') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << De") (Syntax: '"Lo << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << De') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << Si") (Syntax: '"Lo << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << Si') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << [Do]") (Syntax: '"Lo << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << [Do]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << St") (Syntax: '"Lo << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << St') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << Ob") (Syntax: '"Lo << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo << Tc") (Syntax: '"Lo << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo << Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << BoFalse") (Syntax: '"UL << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << BoFalse') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << BoTrue") (Syntax: '"UL << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << BoTrue') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << SB") (Syntax: '"UL << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << SB') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << By") (Syntax: '"UL << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << Sh") (Syntax: '"UL << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << Sh') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << US") (Syntax: '"UL << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << [In]") (Syntax: '"UL << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << [In]') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << UI") (Syntax: '"UL << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << Lo") (Syntax: '"UL << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << Lo') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << UL") (Syntax: '"UL << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << De") (Syntax: '"UL << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << De') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << Si") (Syntax: '"UL << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << Si') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << [Do]") (Syntax: '"UL << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << [Do]') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << St") (Syntax: '"UL << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << St') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << Ob") (Syntax: '"UL << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL << Tc") (Syntax: '"UL << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL << Tc') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << BoFalse") (Syntax: '"De << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << BoTrue") (Syntax: '"De << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << SB") (Syntax: '"De << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << By") (Syntax: '"De << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << Sh") (Syntax: '"De << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << US") (Syntax: '"De << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << [In]") (Syntax: '"De << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << UI") (Syntax: '"De << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << Lo") (Syntax: '"De << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << UL") (Syntax: '"De << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << De") (Syntax: '"De << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << Si") (Syntax: '"De << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << [Do]") (Syntax: '"De << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << St") (Syntax: '"De << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << Ob") (Syntax: '"De << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De << Tc") (Syntax: '"De << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De << Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << BoFalse") (Syntax: '"Si << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << BoTrue") (Syntax: '"Si << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << SB") (Syntax: '"Si << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << By") (Syntax: '"Si << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << Sh") (Syntax: '"Si << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << US") (Syntax: '"Si << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << [In]") (Syntax: '"Si << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << UI") (Syntax: '"Si << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << Lo") (Syntax: '"Si << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << UL") (Syntax: '"Si << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << De") (Syntax: '"Si << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << Si") (Syntax: '"Si << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << [Do]") (Syntax: '"Si << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << St") (Syntax: '"Si << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << Ob") (Syntax: '"Si << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si << Tc") (Syntax: '"Si << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si << Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << BoFalse") (Syntax: '"[Do] << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << BoTrue") (Syntax: '"[Do] << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << SB") (Syntax: '"[Do] << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << By") (Syntax: '"[Do] << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << Sh") (Syntax: '"[Do] << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << US") (Syntax: '"[Do] << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << [In]") (Syntax: '"[Do] << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << UI") (Syntax: '"[Do] << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << Lo") (Syntax: '"[Do] << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << UL") (Syntax: '"[Do] << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << De") (Syntax: '"[Do] << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << Si") (Syntax: '"[Do] << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << [Do]") (Syntax: '"[Do] << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << St") (Syntax: '"[Do] << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << Ob") (Syntax: '"[Do] << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] << Tc") (Syntax: '"[Do] << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] << Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << BoFalse") (Syntax: '"St << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << BoTrue") (Syntax: '"St << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << SB") (Syntax: '"St << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << By") (Syntax: '"St << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << Sh") (Syntax: '"St << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << US") (Syntax: '"St << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << [In]") (Syntax: '"St << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << UI") (Syntax: '"St << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << Lo") (Syntax: '"St << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << UL") (Syntax: '"St << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << De") (Syntax: '"St << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << Si") (Syntax: '"St << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << [Do]") (Syntax: '"St << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << St") (Syntax: '"St << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << Ob") (Syntax: '"St << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << Tc") (Syntax: '"St << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << BoFalse") (Syntax: '"Ob << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << BoTrue") (Syntax: '"Ob << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << SB") (Syntax: '"Ob << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << By") (Syntax: '"Ob << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << Sh") (Syntax: '"Ob << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << US") (Syntax: '"Ob << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << [In]") (Syntax: '"Ob << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << UI") (Syntax: '"Ob << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << Lo") (Syntax: '"Ob << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << UL") (Syntax: '"Ob << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << De") (Syntax: '"Ob << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << Si") (Syntax: '"Ob << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << [Do]") (Syntax: '"Ob << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << St") (Syntax: '"Ob << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << Ob") (Syntax: '"Ob << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob << Tc") (Syntax: '"Ob << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob << Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << BoFalse") (Syntax: '"Tc << BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << BoTrue") (Syntax: '"Tc << BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << SB") (Syntax: '"Tc << SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << SB') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << By") (Syntax: '"Tc << By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << By') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << Sh") (Syntax: '"Tc << Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << US") (Syntax: '"Tc << US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << US') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << [In]") (Syntax: '"Tc << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << UI") (Syntax: '"Tc << UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << UI') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << Lo") (Syntax: '"Tc << Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << UL") (Syntax: '"Tc << UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << UL') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << De") (Syntax: '"Tc << De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << De') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << Si") (Syntax: '"Tc << Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << Si') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc << [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc << [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << [Do]") (Syntax: '"Tc << [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << St") (Syntax: '"Tc << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << Ob") (Syntax: '"Tc << Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc << Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc << Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc << Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc << Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc << Tc") (Syntax: '"Tc << Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc << Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc << Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> BoFalse") (Syntax: '"BoFalse >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> BoTrue") (Syntax: '"BoFalse >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> SB") (Syntax: '"BoFalse >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> By") (Syntax: '"BoFalse >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> Sh") (Syntax: '"BoFalse >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> US") (Syntax: '"BoFalse >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> [In]") (Syntax: '"BoFalse >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> UI") (Syntax: '"BoFalse >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> Lo") (Syntax: '"BoFalse >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> UL") (Syntax: '"BoFalse >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> De") (Syntax: '"BoFalse >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> Si") (Syntax: '"BoFalse >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> [Do]") (Syntax: '"BoFalse >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> St") (Syntax: '"BoFalse >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> Ob") (Syntax: '"BoFalse >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >> Tc") (Syntax: '"BoFalse >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse >> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> BoFalse") (Syntax: '"BoTrue >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> BoTrue") (Syntax: '"BoTrue >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> SB") (Syntax: '"BoTrue >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> By") (Syntax: '"BoTrue >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> Sh") (Syntax: '"BoTrue >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> US") (Syntax: '"BoTrue >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> [In]") (Syntax: '"BoTrue >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> UI") (Syntax: '"BoTrue >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> Lo") (Syntax: '"BoTrue >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> UL") (Syntax: '"BoTrue >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> De") (Syntax: '"BoTrue >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> Si") (Syntax: '"BoTrue >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> [Do]") (Syntax: '"BoTrue >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> St") (Syntax: '"BoTrue >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> Ob") (Syntax: '"BoTrue >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >> Tc") (Syntax: '"BoTrue >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue >> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> BoFalse") (Syntax: '"SB >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> BoTrue") (Syntax: '"SB >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> SB") (Syntax: '"SB >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> By") (Syntax: '"SB >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> By') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> Sh") (Syntax: '"SB >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> Sh') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> US") (Syntax: '"SB >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> US') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> [In]") (Syntax: '"SB >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> [In]') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> UI") (Syntax: '"SB >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> UI') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> Lo") (Syntax: '"SB >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> Lo') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> UL") (Syntax: '"SB >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> UL') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> De") (Syntax: '"SB >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> De') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> Si") (Syntax: '"SB >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> Si') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> [Do]") (Syntax: '"SB >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> [Do]') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> St") (Syntax: '"SB >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> St') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> Ob") (Syntax: '"SB >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >> Tc") (Syntax: '"SB >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB >> Tc') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> BoFalse") (Syntax: '"By >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> BoFalse') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> BoTrue") (Syntax: '"By >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> BoTrue') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> SB") (Syntax: '"By >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> SB') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> By") (Syntax: '"By >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> Sh") (Syntax: '"By >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> Sh') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> US") (Syntax: '"By >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> US') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> [In]") (Syntax: '"By >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> [In]') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> UI") (Syntax: '"By >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> UI') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> Lo") (Syntax: '"By >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> Lo') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> UL") (Syntax: '"By >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> UL') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> De") (Syntax: '"By >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> De') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> Si") (Syntax: '"By >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> Si') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> [Do]") (Syntax: '"By >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> [Do]') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> St") (Syntax: '"By >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> St') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> Ob") (Syntax: '"By >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >> Tc") (Syntax: '"By >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By >> Tc') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> BoFalse") (Syntax: '"Sh >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> BoTrue") (Syntax: '"Sh >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> SB") (Syntax: '"Sh >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> By") (Syntax: '"Sh >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> Sh") (Syntax: '"Sh >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> US") (Syntax: '"Sh >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> US') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> [In]") (Syntax: '"Sh >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> [In]') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> UI") (Syntax: '"Sh >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> UI') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> Lo") (Syntax: '"Sh >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> Lo') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> UL") (Syntax: '"Sh >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> UL') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> De") (Syntax: '"Sh >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> De') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> Si") (Syntax: '"Sh >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> Si') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> [Do]") (Syntax: '"Sh >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> [Do]') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> St") (Syntax: '"Sh >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> St') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> Ob") (Syntax: '"Sh >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >> Tc") (Syntax: '"Sh >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh >> Tc') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> BoFalse") (Syntax: '"US >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> BoFalse') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> BoTrue") (Syntax: '"US >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> BoTrue') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> SB") (Syntax: '"US >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> SB') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> By") (Syntax: '"US >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> Sh") (Syntax: '"US >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> Sh') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> US") (Syntax: '"US >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> [In]") (Syntax: '"US >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> [In]') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> UI") (Syntax: '"US >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> UI') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> Lo") (Syntax: '"US >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> Lo') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> UL") (Syntax: '"US >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> UL') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> De") (Syntax: '"US >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> De') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> Si") (Syntax: '"US >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> Si') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> [Do]") (Syntax: '"US >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> [Do]') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> St") (Syntax: '"US >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> St') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> Ob") (Syntax: '"US >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >> Tc") (Syntax: '"US >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US >> Tc') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> BoFalse") (Syntax: '"[In] >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> BoTrue") (Syntax: '"[In] >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> SB") (Syntax: '"[In] >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> By") (Syntax: '"[In] >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> Sh") (Syntax: '"[In] >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> US") (Syntax: '"[In] >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> [In]") (Syntax: '"[In] >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> UI") (Syntax: '"[In] >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> UI') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> Lo") (Syntax: '"[In] >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> Lo') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> UL") (Syntax: '"[In] >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> UL') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> De") (Syntax: '"[In] >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> De') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> Si") (Syntax: '"[In] >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> Si') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> [Do]") (Syntax: '"[In] >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> [Do]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> St") (Syntax: '"[In] >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> St') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> Ob") (Syntax: '"[In] >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> Tc") (Syntax: '"[In] >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> BoFalse") (Syntax: '"UI >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> BoFalse') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> BoTrue") (Syntax: '"UI >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> BoTrue') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> SB") (Syntax: '"UI >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> SB') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> By") (Syntax: '"UI >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> Sh") (Syntax: '"UI >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> Sh') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> US") (Syntax: '"UI >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> [In]") (Syntax: '"UI >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> [In]') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> UI") (Syntax: '"UI >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> Lo") (Syntax: '"UI >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> Lo') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> UL") (Syntax: '"UI >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> UL') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> De") (Syntax: '"UI >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> De') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> Si") (Syntax: '"UI >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> Si') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> [Do]") (Syntax: '"UI >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> [Do]') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> St") (Syntax: '"UI >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> St') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> Ob") (Syntax: '"UI >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >> Tc") (Syntax: '"UI >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI >> Tc') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> BoFalse") (Syntax: '"Lo >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> BoTrue") (Syntax: '"Lo >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> SB") (Syntax: '"Lo >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> By") (Syntax: '"Lo >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> Sh") (Syntax: '"Lo >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> US") (Syntax: '"Lo >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> [In]") (Syntax: '"Lo >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> UI") (Syntax: '"Lo >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> Lo") (Syntax: '"Lo >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> UL") (Syntax: '"Lo >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> UL') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> De") (Syntax: '"Lo >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> De') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> Si") (Syntax: '"Lo >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> Si') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> [Do]") (Syntax: '"Lo >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> [Do]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> St") (Syntax: '"Lo >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> St') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> Ob") (Syntax: '"Lo >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >> Tc") (Syntax: '"Lo >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo >> Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> BoFalse") (Syntax: '"UL >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> BoFalse') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> BoTrue") (Syntax: '"UL >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> BoTrue') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> SB") (Syntax: '"UL >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> SB') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> By") (Syntax: '"UL >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> Sh") (Syntax: '"UL >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> Sh') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> US") (Syntax: '"UL >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> [In]") (Syntax: '"UL >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> [In]') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> UI") (Syntax: '"UL >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> Lo") (Syntax: '"UL >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> Lo') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> UL") (Syntax: '"UL >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> De") (Syntax: '"UL >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> De') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> Si") (Syntax: '"UL >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> Si') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> [Do]") (Syntax: '"UL >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> [Do]') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> St") (Syntax: '"UL >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> St') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> Ob") (Syntax: '"UL >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >> Tc") (Syntax: '"UL >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL >> Tc') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> BoFalse") (Syntax: '"De >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> BoTrue") (Syntax: '"De >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> SB") (Syntax: '"De >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> By") (Syntax: '"De >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> Sh") (Syntax: '"De >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> US") (Syntax: '"De >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> [In]") (Syntax: '"De >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> UI") (Syntax: '"De >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> Lo") (Syntax: '"De >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> UL") (Syntax: '"De >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> De") (Syntax: '"De >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> Si") (Syntax: '"De >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> [Do]") (Syntax: '"De >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> St") (Syntax: '"De >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> Ob") (Syntax: '"De >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >> Tc") (Syntax: '"De >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De >> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> BoFalse") (Syntax: '"Si >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> BoTrue") (Syntax: '"Si >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> SB") (Syntax: '"Si >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> By") (Syntax: '"Si >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> Sh") (Syntax: '"Si >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> US") (Syntax: '"Si >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> [In]") (Syntax: '"Si >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> UI") (Syntax: '"Si >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> Lo") (Syntax: '"Si >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> UL") (Syntax: '"Si >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> De") (Syntax: '"Si >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> Si") (Syntax: '"Si >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> [Do]") (Syntax: '"Si >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> St") (Syntax: '"Si >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> Ob") (Syntax: '"Si >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >> Tc") (Syntax: '"Si >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si >> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> BoFalse") (Syntax: '"[Do] >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> BoTrue") (Syntax: '"[Do] >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> SB") (Syntax: '"[Do] >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> By") (Syntax: '"[Do] >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> Sh") (Syntax: '"[Do] >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> US") (Syntax: '"[Do] >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> [In]") (Syntax: '"[Do] >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> UI") (Syntax: '"[Do] >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> Lo") (Syntax: '"[Do] >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> UL") (Syntax: '"[Do] >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> De") (Syntax: '"[Do] >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> Si") (Syntax: '"[Do] >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> [Do]") (Syntax: '"[Do] >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> St") (Syntax: '"[Do] >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> Ob") (Syntax: '"[Do] >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >> Tc") (Syntax: '"[Do] >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] >> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> BoFalse") (Syntax: '"St >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> BoTrue") (Syntax: '"St >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> SB") (Syntax: '"St >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> By") (Syntax: '"St >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> Sh") (Syntax: '"St >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> US") (Syntax: '"St >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> [In]") (Syntax: '"St >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> UI") (Syntax: '"St >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> Lo") (Syntax: '"St >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> UL") (Syntax: '"St >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> De") (Syntax: '"St >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> Si") (Syntax: '"St >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> [Do]") (Syntax: '"St >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> St") (Syntax: '"St >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> Ob") (Syntax: '"St >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> Tc") (Syntax: '"St >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> BoFalse") (Syntax: '"Ob >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> BoTrue") (Syntax: '"Ob >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> SB") (Syntax: '"Ob >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> By") (Syntax: '"Ob >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> Sh") (Syntax: '"Ob >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> US") (Syntax: '"Ob >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> [In]") (Syntax: '"Ob >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> UI") (Syntax: '"Ob >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> Lo") (Syntax: '"Ob >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> UL") (Syntax: '"Ob >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> De") (Syntax: '"Ob >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> Si") (Syntax: '"Ob >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> [Do]") (Syntax: '"Ob >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> St") (Syntax: '"Ob >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> Ob") (Syntax: '"Ob >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >> Tc") (Syntax: '"Ob >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >> Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> BoFalse") (Syntax: '"Tc >> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> BoTrue") (Syntax: '"Tc >> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> SB") (Syntax: '"Tc >> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> SB') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> By") (Syntax: '"Tc >> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> By') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> Sh") (Syntax: '"Tc >> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> US") (Syntax: '"Tc >> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> US') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> [In]") (Syntax: '"Tc >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> UI") (Syntax: '"Tc >> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> UI') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> Lo") (Syntax: '"Tc >> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> UL") (Syntax: '"Tc >> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> UL') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> De") (Syntax: '"Tc >> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> De') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> Si") (Syntax: '"Tc >> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> Si') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc >> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc >> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> [Do]") (Syntax: '"Tc >> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> St") (Syntax: '"Tc >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> Ob") (Syntax: '"Tc >> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc >> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >> Tc") (Syntax: '"Tc >> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc >> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse BoFalse") (Syntax: '"BoFalse OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse BoTrue") (Syntax: '"BoFalse OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse SB") (Syntax: '"BoFalse OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse SB') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse By") (Syntax: '"BoFalse OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse By') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse Sh") (Syntax: '"BoFalse OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse Sh') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse US") (Syntax: '"BoFalse OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse US') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse [In]") (Syntax: '"BoFalse OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse [In]') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse UI") (Syntax: '"BoFalse OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse UI') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse Lo") (Syntax: '"BoFalse OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse Lo') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse UL") (Syntax: '"BoFalse OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse UL') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse De") (Syntax: '"BoFalse OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse De') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse Si") (Syntax: '"BoFalse OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse Si') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse [Do]") (Syntax: '"BoFalse OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse [Do]') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse St") (Syntax: '"BoFalse OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse Ob") (Syntax: '"BoFalse OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse OrElse Tc") (Syntax: '"BoFalse OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse OrElse Tc') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse BoFalse") (Syntax: '"BoTrue OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse BoTrue") (Syntax: '"BoTrue OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse SB") (Syntax: '"BoTrue OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse SB') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse By") (Syntax: '"BoTrue OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse By') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse Sh") (Syntax: '"BoTrue OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse Sh') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse US") (Syntax: '"BoTrue OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse US') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse [In]") (Syntax: '"BoTrue OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse [In]') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse UI") (Syntax: '"BoTrue OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse UI') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse Lo") (Syntax: '"BoTrue OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse Lo') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse UL") (Syntax: '"BoTrue OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse UL') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse De") (Syntax: '"BoTrue OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse De') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse Si") (Syntax: '"BoTrue OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse Si') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse [Do]") (Syntax: '"BoTrue OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse [Do]') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse St") (Syntax: '"BoTrue OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse Ob") (Syntax: '"BoTrue OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue OrElse Tc") (Syntax: '"BoTrue OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue OrElse Tc') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse BoFalse") (Syntax: '"SB OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse BoTrue") (Syntax: '"SB OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse SB") (Syntax: '"SB OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse By") (Syntax: '"SB OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse Sh") (Syntax: '"SB OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse US") (Syntax: '"SB OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse [In]") (Syntax: '"SB OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse UI") (Syntax: '"SB OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse Lo") (Syntax: '"SB OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse UL") (Syntax: '"SB OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse De") (Syntax: '"SB OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse Si") (Syntax: '"SB OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse [Do]") (Syntax: '"SB OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse St") (Syntax: '"SB OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse Ob") (Syntax: '"SB OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB OrElse Tc") (Syntax: '"SB OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse BoFalse") (Syntax: '"By OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse BoTrue") (Syntax: '"By OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse SB") (Syntax: '"By OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse By") (Syntax: '"By OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse Sh") (Syntax: '"By OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse US") (Syntax: '"By OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse [In]") (Syntax: '"By OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse UI") (Syntax: '"By OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse Lo") (Syntax: '"By OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse UL") (Syntax: '"By OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse De") (Syntax: '"By OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse Si") (Syntax: '"By OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse [Do]") (Syntax: '"By OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse St") (Syntax: '"By OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse Ob") (Syntax: '"By OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By OrElse Tc") (Syntax: '"By OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse BoFalse") (Syntax: '"Sh OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse BoTrue") (Syntax: '"Sh OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse SB") (Syntax: '"Sh OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse By") (Syntax: '"Sh OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse Sh") (Syntax: '"Sh OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse US") (Syntax: '"Sh OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse [In]") (Syntax: '"Sh OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse UI") (Syntax: '"Sh OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse Lo") (Syntax: '"Sh OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse UL") (Syntax: '"Sh OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse De") (Syntax: '"Sh OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse Si") (Syntax: '"Sh OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse [Do]") (Syntax: '"Sh OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse St") (Syntax: '"Sh OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse Ob") (Syntax: '"Sh OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh OrElse Tc") (Syntax: '"Sh OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse BoFalse") (Syntax: '"US OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse BoTrue") (Syntax: '"US OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse SB") (Syntax: '"US OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse By") (Syntax: '"US OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse Sh") (Syntax: '"US OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse US") (Syntax: '"US OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse [In]") (Syntax: '"US OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse UI") (Syntax: '"US OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse Lo") (Syntax: '"US OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse UL") (Syntax: '"US OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse De") (Syntax: '"US OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse Si") (Syntax: '"US OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse [Do]") (Syntax: '"US OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse St") (Syntax: '"US OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse Ob") (Syntax: '"US OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US OrElse Tc") (Syntax: '"US OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse BoFalse") (Syntax: '"[In] OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse BoTrue") (Syntax: '"[In] OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse SB") (Syntax: '"[In] OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse By") (Syntax: '"[In] OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse Sh") (Syntax: '"[In] OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse US") (Syntax: '"[In] OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse [In]") (Syntax: '"[In] OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse UI") (Syntax: '"[In] OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse Lo") (Syntax: '"[In] OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse UL") (Syntax: '"[In] OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse De") (Syntax: '"[In] OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse Si") (Syntax: '"[In] OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse [Do]") (Syntax: '"[In] OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse St") (Syntax: '"[In] OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse Ob") (Syntax: '"[In] OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse Tc") (Syntax: '"[In] OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse BoFalse") (Syntax: '"UI OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse BoTrue") (Syntax: '"UI OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse SB") (Syntax: '"UI OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse By") (Syntax: '"UI OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse Sh") (Syntax: '"UI OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse US") (Syntax: '"UI OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse [In]") (Syntax: '"UI OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse UI") (Syntax: '"UI OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse Lo") (Syntax: '"UI OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse UL") (Syntax: '"UI OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse De") (Syntax: '"UI OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse Si") (Syntax: '"UI OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse [Do]") (Syntax: '"UI OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse St") (Syntax: '"UI OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse Ob") (Syntax: '"UI OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI OrElse Tc") (Syntax: '"UI OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse BoFalse") (Syntax: '"Lo OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse BoTrue") (Syntax: '"Lo OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse SB") (Syntax: '"Lo OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse By") (Syntax: '"Lo OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse Sh") (Syntax: '"Lo OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse US") (Syntax: '"Lo OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse [In]") (Syntax: '"Lo OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse UI") (Syntax: '"Lo OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse Lo") (Syntax: '"Lo OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse UL") (Syntax: '"Lo OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse De") (Syntax: '"Lo OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse Si") (Syntax: '"Lo OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse [Do]") (Syntax: '"Lo OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse St") (Syntax: '"Lo OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse Ob") (Syntax: '"Lo OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo OrElse Tc") (Syntax: '"Lo OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse BoFalse") (Syntax: '"UL OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse BoTrue") (Syntax: '"UL OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse SB") (Syntax: '"UL OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse By") (Syntax: '"UL OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse Sh") (Syntax: '"UL OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse US") (Syntax: '"UL OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse [In]") (Syntax: '"UL OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse UI") (Syntax: '"UL OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse Lo") (Syntax: '"UL OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse UL") (Syntax: '"UL OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse De") (Syntax: '"UL OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse Si") (Syntax: '"UL OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse [Do]") (Syntax: '"UL OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse St") (Syntax: '"UL OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse Ob") (Syntax: '"UL OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL OrElse Tc") (Syntax: '"UL OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse BoFalse") (Syntax: '"De OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse BoTrue") (Syntax: '"De OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse SB") (Syntax: '"De OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse By") (Syntax: '"De OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse Sh") (Syntax: '"De OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse US") (Syntax: '"De OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse [In]") (Syntax: '"De OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse UI") (Syntax: '"De OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse Lo") (Syntax: '"De OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse UL") (Syntax: '"De OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse De") (Syntax: '"De OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse Si") (Syntax: '"De OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse [Do]") (Syntax: '"De OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse St") (Syntax: '"De OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse Ob") (Syntax: '"De OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De OrElse Tc") (Syntax: '"De OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse BoFalse") (Syntax: '"Si OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse BoTrue") (Syntax: '"Si OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse SB") (Syntax: '"Si OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse By") (Syntax: '"Si OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse Sh") (Syntax: '"Si OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse US") (Syntax: '"Si OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse [In]") (Syntax: '"Si OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse UI") (Syntax: '"Si OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse Lo") (Syntax: '"Si OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse UL") (Syntax: '"Si OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse De") (Syntax: '"Si OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse Si") (Syntax: '"Si OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse [Do]") (Syntax: '"Si OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse St") (Syntax: '"Si OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse Ob") (Syntax: '"Si OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si OrElse Tc") (Syntax: '"Si OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse BoFalse") (Syntax: '"[Do] OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse BoTrue") (Syntax: '"[Do] OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse SB") (Syntax: '"[Do] OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse By") (Syntax: '"[Do] OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse Sh") (Syntax: '"[Do] OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse US") (Syntax: '"[Do] OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse [In]") (Syntax: '"[Do] OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse UI") (Syntax: '"[Do] OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse Lo") (Syntax: '"[Do] OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse UL") (Syntax: '"[Do] OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse De") (Syntax: '"[Do] OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse Si") (Syntax: '"[Do] OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse [Do]") (Syntax: '"[Do] OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse St") (Syntax: '"[Do] OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse Ob") (Syntax: '"[Do] OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] OrElse Tc") (Syntax: '"[Do] OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse BoFalse") (Syntax: '"St OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse BoTrue") (Syntax: '"St OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse SB") (Syntax: '"St OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse By") (Syntax: '"St OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse Sh") (Syntax: '"St OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse US") (Syntax: '"St OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse [In]") (Syntax: '"St OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse UI") (Syntax: '"St OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse Lo") (Syntax: '"St OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse UL") (Syntax: '"St OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse De") (Syntax: '"St OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse Si") (Syntax: '"St OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse [Do]") (Syntax: '"St OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse St") (Syntax: '"St OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse Ob") (Syntax: '"St OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse Tc") (Syntax: '"St OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse BoFalse") (Syntax: '"Ob OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse BoTrue") (Syntax: '"Ob OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse SB") (Syntax: '"Ob OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse By") (Syntax: '"Ob OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse Sh") (Syntax: '"Ob OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse US") (Syntax: '"Ob OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse [In]") (Syntax: '"Ob OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse UI") (Syntax: '"Ob OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse Lo") (Syntax: '"Ob OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse UL") (Syntax: '"Ob OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse De") (Syntax: '"Ob OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse Si") (Syntax: '"Ob OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse [Do]") (Syntax: '"Ob OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse St") (Syntax: '"Ob OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse Ob") (Syntax: '"Ob OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse Tc") (Syntax: '"Ob OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse BoFalse") (Syntax: '"Tc OrElse BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse BoTrue") (Syntax: '"Tc OrElse BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse SB") (Syntax: '"Tc OrElse SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse By") (Syntax: '"Tc OrElse By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse Sh") (Syntax: '"Tc OrElse Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse US") (Syntax: '"Tc OrElse US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse [In]") (Syntax: '"Tc OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse UI") (Syntax: '"Tc OrElse UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse Lo") (Syntax: '"Tc OrElse Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse UL") (Syntax: '"Tc OrElse UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse De") (Syntax: '"Tc OrElse De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse Si") (Syntax: '"Tc OrElse Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse [Do]") (Syntax: '"Tc OrElse [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse St") (Syntax: '"Tc OrElse St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse Ob") (Syntax: '"Tc OrElse Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc OrElse Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... OrElse Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... OrElse Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc OrElse Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc OrElse Tc") (Syntax: '"Tc OrElse Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc OrElse Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc OrElse Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse An ... so BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso BoFalse") (Syntax: '"BoFalse An ... so BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso BoTrue") (Syntax: '"BoFalse AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso SB") (Syntax: '"BoFalse AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso SB') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso By") (Syntax: '"BoFalse AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso By') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso Sh") (Syntax: '"BoFalse AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso Sh') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso US") (Syntax: '"BoFalse AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso US') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso [In]") (Syntax: '"BoFalse AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso [In]') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso UI") (Syntax: '"BoFalse AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso UI') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso Lo") (Syntax: '"BoFalse AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso Lo') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso UL") (Syntax: '"BoFalse AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso UL') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso De") (Syntax: '"BoFalse AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso De') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso Si") (Syntax: '"BoFalse AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso Si') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso [Do]") (Syntax: '"BoFalse AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso [Do]') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso St") (Syntax: '"BoFalse AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso Ob") (Syntax: '"BoFalse AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse AndAlso Tc") (Syntax: '"BoFalse AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse AndAlso Tc') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso BoFalse") (Syntax: '"BoTrue AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso BoTrue") (Syntax: '"BoTrue AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso SB") (Syntax: '"BoTrue AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso SB') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso By") (Syntax: '"BoTrue AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso By') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso Sh") (Syntax: '"BoTrue AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso Sh') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso US") (Syntax: '"BoTrue AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso US') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso [In]") (Syntax: '"BoTrue AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso [In]') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso UI") (Syntax: '"BoTrue AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso UI') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso Lo") (Syntax: '"BoTrue AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso Lo') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso UL") (Syntax: '"BoTrue AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso UL') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso De") (Syntax: '"BoTrue AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso De') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso Si") (Syntax: '"BoTrue AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso Si') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso [Do]") (Syntax: '"BoTrue AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso [Do]') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso St") (Syntax: '"BoTrue AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso Ob") (Syntax: '"BoTrue AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue AndAlso Tc") (Syntax: '"BoTrue AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue AndAlso Tc') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso BoFalse") (Syntax: '"SB AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso BoTrue") (Syntax: '"SB AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso SB") (Syntax: '"SB AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso By") (Syntax: '"SB AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso Sh") (Syntax: '"SB AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso US") (Syntax: '"SB AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso [In]") (Syntax: '"SB AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso UI") (Syntax: '"SB AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso Lo") (Syntax: '"SB AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso UL") (Syntax: '"SB AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso De") (Syntax: '"SB AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso Si") (Syntax: '"SB AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso [Do]") (Syntax: '"SB AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso St") (Syntax: '"SB AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso Ob") (Syntax: '"SB AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB AndAlso Tc") (Syntax: '"SB AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso BoFalse") (Syntax: '"By AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso BoTrue") (Syntax: '"By AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso SB") (Syntax: '"By AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso By") (Syntax: '"By AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso Sh") (Syntax: '"By AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso US") (Syntax: '"By AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso [In]") (Syntax: '"By AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso UI") (Syntax: '"By AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso Lo") (Syntax: '"By AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso UL") (Syntax: '"By AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso De") (Syntax: '"By AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso Si") (Syntax: '"By AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso [Do]") (Syntax: '"By AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso St") (Syntax: '"By AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso Ob") (Syntax: '"By AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By AndAlso Tc") (Syntax: '"By AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso BoFalse") (Syntax: '"Sh AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso BoTrue") (Syntax: '"Sh AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso SB") (Syntax: '"Sh AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso By") (Syntax: '"Sh AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso Sh") (Syntax: '"Sh AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso US") (Syntax: '"Sh AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso [In]") (Syntax: '"Sh AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso UI") (Syntax: '"Sh AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso Lo") (Syntax: '"Sh AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso UL") (Syntax: '"Sh AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso De") (Syntax: '"Sh AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso Si") (Syntax: '"Sh AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso [Do]") (Syntax: '"Sh AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso St") (Syntax: '"Sh AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso Ob") (Syntax: '"Sh AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh AndAlso Tc") (Syntax: '"Sh AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso BoFalse") (Syntax: '"US AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso BoTrue") (Syntax: '"US AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso SB") (Syntax: '"US AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso By") (Syntax: '"US AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso Sh") (Syntax: '"US AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso US") (Syntax: '"US AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso [In]") (Syntax: '"US AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso UI") (Syntax: '"US AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso Lo") (Syntax: '"US AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso UL") (Syntax: '"US AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso De") (Syntax: '"US AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso Si") (Syntax: '"US AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso [Do]") (Syntax: '"US AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso St") (Syntax: '"US AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso Ob") (Syntax: '"US AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US AndAlso Tc") (Syntax: '"US AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso BoFalse") (Syntax: '"[In] AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso BoTrue") (Syntax: '"[In] AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso SB") (Syntax: '"[In] AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso By") (Syntax: '"[In] AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso Sh") (Syntax: '"[In] AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso US") (Syntax: '"[In] AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso [In]") (Syntax: '"[In] AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso UI") (Syntax: '"[In] AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso Lo") (Syntax: '"[In] AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso UL") (Syntax: '"[In] AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso De") (Syntax: '"[In] AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso Si") (Syntax: '"[In] AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso [Do]") (Syntax: '"[In] AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso St") (Syntax: '"[In] AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso Ob") (Syntax: '"[In] AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso Tc") (Syntax: '"[In] AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso BoFalse") (Syntax: '"UI AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso BoTrue") (Syntax: '"UI AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso SB") (Syntax: '"UI AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso By") (Syntax: '"UI AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso Sh") (Syntax: '"UI AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso US") (Syntax: '"UI AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso [In]") (Syntax: '"UI AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso UI") (Syntax: '"UI AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso Lo") (Syntax: '"UI AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso UL") (Syntax: '"UI AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso De") (Syntax: '"UI AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso Si") (Syntax: '"UI AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso [Do]") (Syntax: '"UI AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso St") (Syntax: '"UI AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso Ob") (Syntax: '"UI AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI AndAlso Tc") (Syntax: '"UI AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso BoFalse") (Syntax: '"Lo AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso BoTrue") (Syntax: '"Lo AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso SB") (Syntax: '"Lo AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso By") (Syntax: '"Lo AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso Sh") (Syntax: '"Lo AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso US") (Syntax: '"Lo AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso [In]") (Syntax: '"Lo AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso UI") (Syntax: '"Lo AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso Lo") (Syntax: '"Lo AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso UL") (Syntax: '"Lo AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso De") (Syntax: '"Lo AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso Si") (Syntax: '"Lo AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso [Do]") (Syntax: '"Lo AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso St") (Syntax: '"Lo AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso Ob") (Syntax: '"Lo AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo AndAlso Tc") (Syntax: '"Lo AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso BoFalse") (Syntax: '"UL AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso BoTrue") (Syntax: '"UL AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso SB") (Syntax: '"UL AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso By") (Syntax: '"UL AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso Sh") (Syntax: '"UL AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso US") (Syntax: '"UL AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso [In]") (Syntax: '"UL AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso UI") (Syntax: '"UL AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso Lo") (Syntax: '"UL AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso UL") (Syntax: '"UL AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso De") (Syntax: '"UL AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso Si") (Syntax: '"UL AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso [Do]") (Syntax: '"UL AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso St") (Syntax: '"UL AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso Ob") (Syntax: '"UL AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL AndAlso Tc") (Syntax: '"UL AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso BoFalse") (Syntax: '"De AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso BoTrue") (Syntax: '"De AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso SB") (Syntax: '"De AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso By") (Syntax: '"De AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso Sh") (Syntax: '"De AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso US") (Syntax: '"De AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso [In]") (Syntax: '"De AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso UI") (Syntax: '"De AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso Lo") (Syntax: '"De AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso UL") (Syntax: '"De AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso De") (Syntax: '"De AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso Si") (Syntax: '"De AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso [Do]") (Syntax: '"De AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso St") (Syntax: '"De AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso Ob") (Syntax: '"De AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De AndAlso Tc") (Syntax: '"De AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso BoFalse") (Syntax: '"Si AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso BoTrue") (Syntax: '"Si AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso SB") (Syntax: '"Si AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso By") (Syntax: '"Si AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso Sh") (Syntax: '"Si AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso US") (Syntax: '"Si AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso [In]") (Syntax: '"Si AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso UI") (Syntax: '"Si AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso Lo") (Syntax: '"Si AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso UL") (Syntax: '"Si AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso De") (Syntax: '"Si AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso Si") (Syntax: '"Si AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso [Do]") (Syntax: '"Si AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso St") (Syntax: '"Si AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso Ob") (Syntax: '"Si AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si AndAlso Tc") (Syntax: '"Si AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso BoFalse") (Syntax: '"[Do] AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso BoTrue") (Syntax: '"[Do] AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso SB") (Syntax: '"[Do] AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso By") (Syntax: '"[Do] AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso Sh") (Syntax: '"[Do] AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso US") (Syntax: '"[Do] AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso [In]") (Syntax: '"[Do] AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso UI") (Syntax: '"[Do] AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso Lo") (Syntax: '"[Do] AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso UL") (Syntax: '"[Do] AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso De") (Syntax: '"[Do] AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso Si") (Syntax: '"[Do] AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso [Do]") (Syntax: '"[Do] AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso St") (Syntax: '"[Do] AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso Ob") (Syntax: '"[Do] AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] AndAlso Tc") (Syntax: '"[Do] AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso BoFalse") (Syntax: '"St AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso BoTrue") (Syntax: '"St AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso SB") (Syntax: '"St AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso By") (Syntax: '"St AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso Sh") (Syntax: '"St AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso US") (Syntax: '"St AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso [In]") (Syntax: '"St AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso UI") (Syntax: '"St AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso Lo") (Syntax: '"St AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso UL") (Syntax: '"St AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso De") (Syntax: '"St AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso Si") (Syntax: '"St AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso [Do]") (Syntax: '"St AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso St") (Syntax: '"St AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso Ob") (Syntax: '"St AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso Tc") (Syntax: '"St AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso BoFalse") (Syntax: '"Ob AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso BoTrue") (Syntax: '"Ob AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso SB") (Syntax: '"Ob AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso By") (Syntax: '"Ob AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso Sh") (Syntax: '"Ob AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso US") (Syntax: '"Ob AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso [In]") (Syntax: '"Ob AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso UI") (Syntax: '"Ob AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso Lo") (Syntax: '"Ob AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso UL") (Syntax: '"Ob AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso De") (Syntax: '"Ob AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso Si") (Syntax: '"Ob AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso [Do]") (Syntax: '"Ob AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso St") (Syntax: '"Ob AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso Ob") (Syntax: '"Ob AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob AndAlso Tc") (Syntax: '"Ob AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob AndAlso Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso BoFalse") (Syntax: '"Tc AndAlso BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lso BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lso BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso BoTrue") (Syntax: '"Tc AndAlso BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso SB") (Syntax: '"Tc AndAlso SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso SB') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso By") (Syntax: '"Tc AndAlso By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso By') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso Sh") (Syntax: '"Tc AndAlso Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso US") (Syntax: '"Tc AndAlso US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso US') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso [In]") (Syntax: '"Tc AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso UI") (Syntax: '"Tc AndAlso UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso UI') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso Lo") (Syntax: '"Tc AndAlso Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso UL") (Syntax: '"Tc AndAlso UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso UL') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso De") (Syntax: '"Tc AndAlso De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso De') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso Si") (Syntax: '"Tc AndAlso Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso Si') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso [Do]") (Syntax: '"Tc AndAlso [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso St") (Syntax: '"Tc AndAlso St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso St') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso Ob") (Syntax: '"Tc AndAlso Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc AndAlso Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... AndAlso Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... AndAlso Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc AndAlso Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc AndAlso Tc") (Syntax: '"Tc AndAlso Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc AndAlso Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc AndAlso Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & BoFalse") (Syntax: '"BoFalse & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & BoTrue") (Syntax: '"BoFalse & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & SB") (Syntax: '"BoFalse & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & By") (Syntax: '"BoFalse & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & Sh") (Syntax: '"BoFalse & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & US") (Syntax: '"BoFalse & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & [In]") (Syntax: '"BoFalse & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & UI") (Syntax: '"BoFalse & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & Lo") (Syntax: '"BoFalse & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & UL") (Syntax: '"BoFalse & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & De") (Syntax: '"BoFalse & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & Si") (Syntax: '"BoFalse & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & [Do]") (Syntax: '"BoFalse & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & St") (Syntax: '"BoFalse & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & Ob") (Syntax: '"BoFalse & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & Tc") (Syntax: '"BoFalse & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & BoFalse") (Syntax: '"BoTrue & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & BoTrue") (Syntax: '"BoTrue & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & SB") (Syntax: '"BoTrue & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & By") (Syntax: '"BoTrue & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & Sh") (Syntax: '"BoTrue & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & US") (Syntax: '"BoTrue & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & [In]") (Syntax: '"BoTrue & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & UI") (Syntax: '"BoTrue & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & Lo") (Syntax: '"BoTrue & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & UL") (Syntax: '"BoTrue & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & De") (Syntax: '"BoTrue & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & Si") (Syntax: '"BoTrue & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & [Do]") (Syntax: '"BoTrue & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & St") (Syntax: '"BoTrue & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & Ob") (Syntax: '"BoTrue & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & Tc") (Syntax: '"BoTrue & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & BoFalse") (Syntax: '"SB & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & BoTrue") (Syntax: '"SB & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & SB") (Syntax: '"SB & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & By") (Syntax: '"SB & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & Sh") (Syntax: '"SB & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & US") (Syntax: '"SB & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & [In]") (Syntax: '"SB & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & UI") (Syntax: '"SB & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & Lo") (Syntax: '"SB & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & UL") (Syntax: '"SB & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & De") (Syntax: '"SB & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & Si") (Syntax: '"SB & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & [Do]") (Syntax: '"SB & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & St") (Syntax: '"SB & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & Ob") (Syntax: '"SB & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & Tc") (Syntax: '"SB & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & BoFalse") (Syntax: '"By & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & BoTrue") (Syntax: '"By & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & SB") (Syntax: '"By & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & By") (Syntax: '"By & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & Sh") (Syntax: '"By & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & US") (Syntax: '"By & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & [In]") (Syntax: '"By & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & UI") (Syntax: '"By & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & Lo") (Syntax: '"By & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & UL") (Syntax: '"By & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & De") (Syntax: '"By & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & Si") (Syntax: '"By & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & [Do]") (Syntax: '"By & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & St") (Syntax: '"By & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & Ob") (Syntax: '"By & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & Tc") (Syntax: '"By & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & BoFalse") (Syntax: '"Sh & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & BoTrue") (Syntax: '"Sh & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & SB") (Syntax: '"Sh & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & By") (Syntax: '"Sh & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & Sh") (Syntax: '"Sh & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & US") (Syntax: '"Sh & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & [In]") (Syntax: '"Sh & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & UI") (Syntax: '"Sh & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & Lo") (Syntax: '"Sh & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & UL") (Syntax: '"Sh & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & De") (Syntax: '"Sh & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & Si") (Syntax: '"Sh & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & [Do]") (Syntax: '"Sh & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & St") (Syntax: '"Sh & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & Ob") (Syntax: '"Sh & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & Tc") (Syntax: '"Sh & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & BoFalse") (Syntax: '"US & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & BoTrue") (Syntax: '"US & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & SB") (Syntax: '"US & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & By") (Syntax: '"US & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & Sh") (Syntax: '"US & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & US") (Syntax: '"US & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & [In]") (Syntax: '"US & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & UI") (Syntax: '"US & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & Lo") (Syntax: '"US & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & UL") (Syntax: '"US & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & De") (Syntax: '"US & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & Si") (Syntax: '"US & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & [Do]") (Syntax: '"US & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & St") (Syntax: '"US & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & Ob") (Syntax: '"US & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & Tc") (Syntax: '"US & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & BoFalse") (Syntax: '"[In] & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & BoTrue") (Syntax: '"[In] & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & SB") (Syntax: '"[In] & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & By") (Syntax: '"[In] & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & Sh") (Syntax: '"[In] & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & US") (Syntax: '"[In] & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & [In]") (Syntax: '"[In] & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & UI") (Syntax: '"[In] & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & Lo") (Syntax: '"[In] & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & UL") (Syntax: '"[In] & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & De") (Syntax: '"[In] & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & Si") (Syntax: '"[In] & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & [Do]") (Syntax: '"[In] & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & St") (Syntax: '"[In] & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & Ob") (Syntax: '"[In] & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & Tc") (Syntax: '"[In] & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & BoFalse") (Syntax: '"UI & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & BoTrue") (Syntax: '"UI & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & SB") (Syntax: '"UI & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & By") (Syntax: '"UI & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & Sh") (Syntax: '"UI & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & US") (Syntax: '"UI & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & [In]") (Syntax: '"UI & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & UI") (Syntax: '"UI & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & Lo") (Syntax: '"UI & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & UL") (Syntax: '"UI & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & De") (Syntax: '"UI & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & Si") (Syntax: '"UI & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & [Do]") (Syntax: '"UI & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & St") (Syntax: '"UI & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & Ob") (Syntax: '"UI & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & Tc") (Syntax: '"UI & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & BoFalse") (Syntax: '"Lo & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & BoTrue") (Syntax: '"Lo & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & SB") (Syntax: '"Lo & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & By") (Syntax: '"Lo & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & Sh") (Syntax: '"Lo & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & US") (Syntax: '"Lo & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & [In]") (Syntax: '"Lo & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & UI") (Syntax: '"Lo & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & Lo") (Syntax: '"Lo & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & UL") (Syntax: '"Lo & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & De") (Syntax: '"Lo & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & Si") (Syntax: '"Lo & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & [Do]") (Syntax: '"Lo & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & St") (Syntax: '"Lo & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & Ob") (Syntax: '"Lo & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & Tc") (Syntax: '"Lo & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & BoFalse") (Syntax: '"UL & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & BoTrue") (Syntax: '"UL & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & SB") (Syntax: '"UL & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & By") (Syntax: '"UL & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & Sh") (Syntax: '"UL & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & US") (Syntax: '"UL & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & [In]") (Syntax: '"UL & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & UI") (Syntax: '"UL & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & Lo") (Syntax: '"UL & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & UL") (Syntax: '"UL & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & De") (Syntax: '"UL & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & Si") (Syntax: '"UL & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & [Do]") (Syntax: '"UL & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & St") (Syntax: '"UL & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & Ob") (Syntax: '"UL & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & Tc") (Syntax: '"UL & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & BoFalse") (Syntax: '"De & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & BoTrue") (Syntax: '"De & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & SB") (Syntax: '"De & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & By") (Syntax: '"De & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & Sh") (Syntax: '"De & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & US") (Syntax: '"De & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & [In]") (Syntax: '"De & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & UI") (Syntax: '"De & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & Lo") (Syntax: '"De & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & UL") (Syntax: '"De & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & De") (Syntax: '"De & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & Si") (Syntax: '"De & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & [Do]") (Syntax: '"De & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & St") (Syntax: '"De & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & Ob") (Syntax: '"De & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & Tc") (Syntax: '"De & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & BoFalse") (Syntax: '"Si & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & BoTrue") (Syntax: '"Si & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & SB") (Syntax: '"Si & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & By") (Syntax: '"Si & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & Sh") (Syntax: '"Si & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & US") (Syntax: '"Si & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & [In]") (Syntax: '"Si & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & UI") (Syntax: '"Si & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & Lo") (Syntax: '"Si & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & UL") (Syntax: '"Si & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & De") (Syntax: '"Si & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & Si") (Syntax: '"Si & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & [Do]") (Syntax: '"Si & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & St") (Syntax: '"Si & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & Ob") (Syntax: '"Si & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & Tc") (Syntax: '"Si & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & BoFalse") (Syntax: '"[Do] & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & BoTrue") (Syntax: '"[Do] & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & SB") (Syntax: '"[Do] & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & By") (Syntax: '"[Do] & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & Sh") (Syntax: '"[Do] & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & US") (Syntax: '"[Do] & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & [In]") (Syntax: '"[Do] & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & UI") (Syntax: '"[Do] & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & Lo") (Syntax: '"[Do] & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & UL") (Syntax: '"[Do] & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & De") (Syntax: '"[Do] & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & Si") (Syntax: '"[Do] & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & [Do]") (Syntax: '"[Do] & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & St") (Syntax: '"[Do] & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & Ob") (Syntax: '"[Do] & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & Tc") (Syntax: '"[Do] & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & BoFalse") (Syntax: '"St & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & BoFalse') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & BoTrue") (Syntax: '"St & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & BoTrue') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & SB") (Syntax: '"St & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & SB') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & By") (Syntax: '"St & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & By') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & Sh") (Syntax: '"St & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & Sh') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & US") (Syntax: '"St & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & US') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & [In]") (Syntax: '"St & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & [In]') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & UI") (Syntax: '"St & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & UI') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & Lo") (Syntax: '"St & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & Lo') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & UL") (Syntax: '"St & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & UL') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & De") (Syntax: '"St & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & De') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & Si") (Syntax: '"St & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & Si') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & [Do]") (Syntax: '"St & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & [Do]') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & St") (Syntax: '"St & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & Ob") (Syntax: '"St & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & Tc") (Syntax: '"St & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & Tc') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & BoFalse") (Syntax: '"Ob & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & BoTrue") (Syntax: '"Ob & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & SB") (Syntax: '"Ob & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & By") (Syntax: '"Ob & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & Sh") (Syntax: '"Ob & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & US") (Syntax: '"Ob & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & [In]") (Syntax: '"Ob & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & UI") (Syntax: '"Ob & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & Lo") (Syntax: '"Ob & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & UL") (Syntax: '"Ob & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & De") (Syntax: '"Ob & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & Si") (Syntax: '"Ob & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & [Do]") (Syntax: '"Ob & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & St") (Syntax: '"Ob & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & Ob") (Syntax: '"Ob & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & Tc") (Syntax: '"Ob & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & BoFalse") (Syntax: '"Tc & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & BoTrue") (Syntax: '"Tc & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & SB") (Syntax: '"Tc & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & By") (Syntax: '"Tc & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & Sh") (Syntax: '"Tc & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & US") (Syntax: '"Tc & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & [In]") (Syntax: '"Tc & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & UI") (Syntax: '"Tc & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & Lo") (Syntax: '"Tc & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & UL") (Syntax: '"Tc & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & De") (Syntax: '"Tc & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & Si") (Syntax: '"Tc & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & [Do]") (Syntax: '"Tc & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & St") (Syntax: '"Tc & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & Ob") (Syntax: '"Tc & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & Tc") (Syntax: '"Tc & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like BoFalse") (Syntax: '"BoFalse Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like BoTrue") (Syntax: '"BoFalse Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like SB") (Syntax: '"BoFalse Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like By") (Syntax: '"BoFalse Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like Sh") (Syntax: '"BoFalse Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like US") (Syntax: '"BoFalse Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like [In]") (Syntax: '"BoFalse Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like UI") (Syntax: '"BoFalse Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like Lo") (Syntax: '"BoFalse Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like UL") (Syntax: '"BoFalse Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like De") (Syntax: '"BoFalse Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like Si") (Syntax: '"BoFalse Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like [Do]") (Syntax: '"BoFalse Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like St") (Syntax: '"BoFalse Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like Ob") (Syntax: '"BoFalse Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like Tc") (Syntax: '"BoFalse Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like BoFalse") (Syntax: '"BoTrue Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like BoTrue") (Syntax: '"BoTrue Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like SB") (Syntax: '"BoTrue Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like By") (Syntax: '"BoTrue Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like Sh") (Syntax: '"BoTrue Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like US") (Syntax: '"BoTrue Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like [In]") (Syntax: '"BoTrue Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like UI") (Syntax: '"BoTrue Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like Lo") (Syntax: '"BoTrue Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like UL") (Syntax: '"BoTrue Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like De") (Syntax: '"BoTrue Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like Si") (Syntax: '"BoTrue Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like [Do]") (Syntax: '"BoTrue Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like St") (Syntax: '"BoTrue Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like Ob") (Syntax: '"BoTrue Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like Tc") (Syntax: '"BoTrue Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like BoFalse") (Syntax: '"SB Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like BoTrue") (Syntax: '"SB Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like SB") (Syntax: '"SB Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like By") (Syntax: '"SB Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like Sh") (Syntax: '"SB Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like US") (Syntax: '"SB Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like [In]") (Syntax: '"SB Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like UI") (Syntax: '"SB Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like Lo") (Syntax: '"SB Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like UL") (Syntax: '"SB Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like De") (Syntax: '"SB Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like Si") (Syntax: '"SB Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like [Do]") (Syntax: '"SB Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like St") (Syntax: '"SB Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like Ob") (Syntax: '"SB Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like Tc") (Syntax: '"SB Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like BoFalse") (Syntax: '"By Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like BoTrue") (Syntax: '"By Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like SB") (Syntax: '"By Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like By") (Syntax: '"By Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like Sh") (Syntax: '"By Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like US") (Syntax: '"By Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like [In]") (Syntax: '"By Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like UI") (Syntax: '"By Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like Lo") (Syntax: '"By Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like UL") (Syntax: '"By Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like De") (Syntax: '"By Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like Si") (Syntax: '"By Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like [Do]") (Syntax: '"By Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like St") (Syntax: '"By Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like Ob") (Syntax: '"By Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like Tc") (Syntax: '"By Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like BoFalse") (Syntax: '"Sh Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like BoTrue") (Syntax: '"Sh Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like SB") (Syntax: '"Sh Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like By") (Syntax: '"Sh Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like Sh") (Syntax: '"Sh Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like US") (Syntax: '"Sh Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like [In]") (Syntax: '"Sh Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like UI") (Syntax: '"Sh Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like Lo") (Syntax: '"Sh Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like UL") (Syntax: '"Sh Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like De") (Syntax: '"Sh Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like Si") (Syntax: '"Sh Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like [Do]") (Syntax: '"Sh Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like St") (Syntax: '"Sh Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like Ob") (Syntax: '"Sh Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like Tc") (Syntax: '"Sh Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like BoFalse") (Syntax: '"US Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like BoTrue") (Syntax: '"US Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like SB") (Syntax: '"US Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like By") (Syntax: '"US Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like Sh") (Syntax: '"US Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like US") (Syntax: '"US Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like [In]") (Syntax: '"US Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like UI") (Syntax: '"US Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like Lo") (Syntax: '"US Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like UL") (Syntax: '"US Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like De") (Syntax: '"US Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like Si") (Syntax: '"US Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like [Do]") (Syntax: '"US Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like St") (Syntax: '"US Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like Ob") (Syntax: '"US Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like Tc") (Syntax: '"US Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like BoFalse") (Syntax: '"[In] Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like BoTrue") (Syntax: '"[In] Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like SB") (Syntax: '"[In] Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like By") (Syntax: '"[In] Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Sh") (Syntax: '"[In] Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like US") (Syntax: '"[In] Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like [In]") (Syntax: '"[In] Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like UI") (Syntax: '"[In] Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Lo") (Syntax: '"[In] Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like UL") (Syntax: '"[In] Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like De") (Syntax: '"[In] Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Si") (Syntax: '"[In] Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like [Do]") (Syntax: '"[In] Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like St") (Syntax: '"[In] Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Ob") (Syntax: '"[In] Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Tc") (Syntax: '"[In] Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like BoFalse") (Syntax: '"UI Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like BoTrue") (Syntax: '"UI Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like SB") (Syntax: '"UI Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like By") (Syntax: '"UI Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like Sh") (Syntax: '"UI Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like US") (Syntax: '"UI Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like [In]") (Syntax: '"UI Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like UI") (Syntax: '"UI Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like Lo") (Syntax: '"UI Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like UL") (Syntax: '"UI Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like De") (Syntax: '"UI Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like Si") (Syntax: '"UI Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like [Do]") (Syntax: '"UI Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like St") (Syntax: '"UI Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like Ob") (Syntax: '"UI Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like Tc") (Syntax: '"UI Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like BoFalse") (Syntax: '"Lo Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like BoTrue") (Syntax: '"Lo Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like SB") (Syntax: '"Lo Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like By") (Syntax: '"Lo Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like Sh") (Syntax: '"Lo Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like US") (Syntax: '"Lo Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like [In]") (Syntax: '"Lo Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like UI") (Syntax: '"Lo Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like Lo") (Syntax: '"Lo Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like UL") (Syntax: '"Lo Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like De") (Syntax: '"Lo Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like Si") (Syntax: '"Lo Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like [Do]") (Syntax: '"Lo Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like St") (Syntax: '"Lo Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like Ob") (Syntax: '"Lo Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like Tc") (Syntax: '"Lo Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like BoFalse") (Syntax: '"UL Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like BoTrue") (Syntax: '"UL Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like SB") (Syntax: '"UL Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like By") (Syntax: '"UL Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like Sh") (Syntax: '"UL Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like US") (Syntax: '"UL Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like [In]") (Syntax: '"UL Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like UI") (Syntax: '"UL Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like Lo") (Syntax: '"UL Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like UL") (Syntax: '"UL Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like De") (Syntax: '"UL Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like Si") (Syntax: '"UL Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like [Do]") (Syntax: '"UL Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like St") (Syntax: '"UL Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like Ob") (Syntax: '"UL Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like Tc") (Syntax: '"UL Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like BoFalse") (Syntax: '"De Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like BoTrue") (Syntax: '"De Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like SB") (Syntax: '"De Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like By") (Syntax: '"De Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like Sh") (Syntax: '"De Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like US") (Syntax: '"De Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like [In]") (Syntax: '"De Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like UI") (Syntax: '"De Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like Lo") (Syntax: '"De Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like UL") (Syntax: '"De Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like De") (Syntax: '"De Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like Si") (Syntax: '"De Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like [Do]") (Syntax: '"De Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like St") (Syntax: '"De Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like Ob") (Syntax: '"De Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like Tc") (Syntax: '"De Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like BoFalse") (Syntax: '"Si Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like BoTrue") (Syntax: '"Si Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like SB") (Syntax: '"Si Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like By") (Syntax: '"Si Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like Sh") (Syntax: '"Si Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like US") (Syntax: '"Si Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like [In]") (Syntax: '"Si Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like UI") (Syntax: '"Si Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like Lo") (Syntax: '"Si Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like UL") (Syntax: '"Si Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like De") (Syntax: '"Si Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like Si") (Syntax: '"Si Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like [Do]") (Syntax: '"Si Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like St") (Syntax: '"Si Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like Ob") (Syntax: '"Si Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like Tc") (Syntax: '"Si Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like BoFalse") (Syntax: '"[Do] Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like BoTrue") (Syntax: '"[Do] Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like SB") (Syntax: '"[Do] Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like By") (Syntax: '"[Do] Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like Sh") (Syntax: '"[Do] Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like US") (Syntax: '"[Do] Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like [In]") (Syntax: '"[Do] Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like UI") (Syntax: '"[Do] Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like Lo") (Syntax: '"[Do] Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like UL") (Syntax: '"[Do] Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like De") (Syntax: '"[Do] Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like Si") (Syntax: '"[Do] Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like [Do]") (Syntax: '"[Do] Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like St") (Syntax: '"[Do] Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like Ob") (Syntax: '"[Do] Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like Tc") (Syntax: '"[Do] Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like BoFalse") (Syntax: '"St Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like BoFalse') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like BoTrue") (Syntax: '"St Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like BoTrue') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like SB") (Syntax: '"St Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like SB') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like By") (Syntax: '"St Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like By') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Sh") (Syntax: '"St Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like Sh') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like US") (Syntax: '"St Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like US') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like [In]") (Syntax: '"St Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like [In]') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like UI") (Syntax: '"St Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like UI') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Lo") (Syntax: '"St Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like Lo') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like UL") (Syntax: '"St Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like UL') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like De") (Syntax: '"St Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like De') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Si") (Syntax: '"St Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like Si') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like [Do]") (Syntax: '"St Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like [Do]') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like St") (Syntax: '"St Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Ob") (Syntax: '"St Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Tc") (Syntax: '"St Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like Tc') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like BoFalse") (Syntax: '"Ob Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like BoTrue") (Syntax: '"Ob Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like SB") (Syntax: '"Ob Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like By") (Syntax: '"Ob Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like Sh") (Syntax: '"Ob Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like US") (Syntax: '"Ob Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like [In]") (Syntax: '"Ob Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like UI") (Syntax: '"Ob Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like Lo") (Syntax: '"Ob Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like UL") (Syntax: '"Ob Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like De") (Syntax: '"Ob Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like Si") (Syntax: '"Ob Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like [Do]") (Syntax: '"Ob Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like St") (Syntax: '"Ob Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like Ob") (Syntax: '"Ob Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like Tc") (Syntax: '"Ob Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like BoFalse") (Syntax: '"Tc Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like BoTrue") (Syntax: '"Tc Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like SB") (Syntax: '"Tc Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like By") (Syntax: '"Tc Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like Sh") (Syntax: '"Tc Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like US") (Syntax: '"Tc Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like [In]") (Syntax: '"Tc Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like UI") (Syntax: '"Tc Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like Lo") (Syntax: '"Tc Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like UL") (Syntax: '"Tc Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like De") (Syntax: '"Tc Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like Si") (Syntax: '"Tc Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like [Do]") (Syntax: '"Tc Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like St") (Syntax: '"Tc Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like Ob") (Syntax: '"Tc Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like Tc") (Syntax: '"Tc Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = BoFalse") (Syntax: '"BoFalse = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = BoTrue") (Syntax: '"BoFalse = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = SB") (Syntax: '"BoFalse = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = By") (Syntax: '"BoFalse = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = Sh") (Syntax: '"BoFalse = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = US") (Syntax: '"BoFalse = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = [In]") (Syntax: '"BoFalse = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = UI") (Syntax: '"BoFalse = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = Lo") (Syntax: '"BoFalse = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = UL") (Syntax: '"BoFalse = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = De") (Syntax: '"BoFalse = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = Si") (Syntax: '"BoFalse = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = [Do]") (Syntax: '"BoFalse = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = St") (Syntax: '"BoFalse = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = Ob") (Syntax: '"BoFalse = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse = Tc") (Syntax: '"BoFalse = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = BoFalse") (Syntax: '"BoTrue = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = BoTrue") (Syntax: '"BoTrue = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = SB") (Syntax: '"BoTrue = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = By") (Syntax: '"BoTrue = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = Sh") (Syntax: '"BoTrue = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = US") (Syntax: '"BoTrue = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = [In]") (Syntax: '"BoTrue = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = UI") (Syntax: '"BoTrue = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = Lo") (Syntax: '"BoTrue = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = UL") (Syntax: '"BoTrue = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = De") (Syntax: '"BoTrue = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = Si") (Syntax: '"BoTrue = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = [Do]") (Syntax: '"BoTrue = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = St") (Syntax: '"BoTrue = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = Ob") (Syntax: '"BoTrue = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue = Tc") (Syntax: '"BoTrue = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = BoFalse") (Syntax: '"SB = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = BoTrue") (Syntax: '"SB = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = SB") (Syntax: '"SB = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = By") (Syntax: '"SB = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = Sh") (Syntax: '"SB = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = US") (Syntax: '"SB = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = [In]") (Syntax: '"SB = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = UI") (Syntax: '"SB = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = Lo") (Syntax: '"SB = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = UL") (Syntax: '"SB = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = De") (Syntax: '"SB = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = Si") (Syntax: '"SB = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = [Do]") (Syntax: '"SB = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = St") (Syntax: '"SB = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = Ob") (Syntax: '"SB = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB = Tc") (Syntax: '"SB = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = BoFalse") (Syntax: '"By = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = BoTrue") (Syntax: '"By = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = SB") (Syntax: '"By = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = By") (Syntax: '"By = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = Sh") (Syntax: '"By = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = US") (Syntax: '"By = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = [In]") (Syntax: '"By = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = UI") (Syntax: '"By = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = Lo") (Syntax: '"By = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = UL") (Syntax: '"By = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = De") (Syntax: '"By = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = Si") (Syntax: '"By = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = [Do]") (Syntax: '"By = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = St") (Syntax: '"By = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = Ob") (Syntax: '"By = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By = Tc") (Syntax: '"By = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = BoFalse") (Syntax: '"Sh = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = BoTrue") (Syntax: '"Sh = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = SB") (Syntax: '"Sh = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = By") (Syntax: '"Sh = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = Sh") (Syntax: '"Sh = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = US") (Syntax: '"Sh = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = [In]") (Syntax: '"Sh = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = UI") (Syntax: '"Sh = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = Lo") (Syntax: '"Sh = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = UL") (Syntax: '"Sh = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = De") (Syntax: '"Sh = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = Si") (Syntax: '"Sh = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = [Do]") (Syntax: '"Sh = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = St") (Syntax: '"Sh = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = Ob") (Syntax: '"Sh = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh = Tc") (Syntax: '"Sh = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = BoFalse") (Syntax: '"US = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = BoTrue") (Syntax: '"US = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = SB") (Syntax: '"US = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = By") (Syntax: '"US = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = Sh") (Syntax: '"US = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = US") (Syntax: '"US = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = [In]") (Syntax: '"US = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = UI") (Syntax: '"US = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = Lo") (Syntax: '"US = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = UL") (Syntax: '"US = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = De") (Syntax: '"US = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = Si") (Syntax: '"US = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = [Do]") (Syntax: '"US = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = St") (Syntax: '"US = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = Ob") (Syntax: '"US = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US = Tc") (Syntax: '"US = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = BoFalse") (Syntax: '"[In] = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = BoTrue") (Syntax: '"[In] = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = SB") (Syntax: '"[In] = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = By") (Syntax: '"[In] = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = Sh") (Syntax: '"[In] = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = US") (Syntax: '"[In] = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = [In]") (Syntax: '"[In] = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = UI") (Syntax: '"[In] = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = Lo") (Syntax: '"[In] = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = UL") (Syntax: '"[In] = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = De") (Syntax: '"[In] = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = Si") (Syntax: '"[In] = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = [Do]") (Syntax: '"[In] = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = St") (Syntax: '"[In] = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = Ob") (Syntax: '"[In] = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = Tc") (Syntax: '"[In] = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = BoFalse") (Syntax: '"UI = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = BoTrue") (Syntax: '"UI = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = SB") (Syntax: '"UI = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = By") (Syntax: '"UI = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = Sh") (Syntax: '"UI = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = US") (Syntax: '"UI = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = [In]") (Syntax: '"UI = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = UI") (Syntax: '"UI = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = Lo") (Syntax: '"UI = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = UL") (Syntax: '"UI = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = De") (Syntax: '"UI = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = Si") (Syntax: '"UI = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = [Do]") (Syntax: '"UI = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = St") (Syntax: '"UI = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = Ob") (Syntax: '"UI = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI = Tc") (Syntax: '"UI = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = BoFalse") (Syntax: '"Lo = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = BoTrue") (Syntax: '"Lo = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = SB") (Syntax: '"Lo = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = By") (Syntax: '"Lo = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = Sh") (Syntax: '"Lo = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = US") (Syntax: '"Lo = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = [In]") (Syntax: '"Lo = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = UI") (Syntax: '"Lo = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = Lo") (Syntax: '"Lo = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = UL") (Syntax: '"Lo = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = De") (Syntax: '"Lo = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = Si") (Syntax: '"Lo = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = [Do]") (Syntax: '"Lo = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = St") (Syntax: '"Lo = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = Ob") (Syntax: '"Lo = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo = Tc") (Syntax: '"Lo = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo = Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = BoFalse") (Syntax: '"UL = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = BoTrue") (Syntax: '"UL = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = SB") (Syntax: '"UL = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = By") (Syntax: '"UL = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = Sh") (Syntax: '"UL = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = US") (Syntax: '"UL = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = [In]") (Syntax: '"UL = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = UI") (Syntax: '"UL = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = Lo") (Syntax: '"UL = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = UL") (Syntax: '"UL = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = De") (Syntax: '"UL = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = Si") (Syntax: '"UL = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = [Do]") (Syntax: '"UL = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = St") (Syntax: '"UL = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = Ob") (Syntax: '"UL = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL = Tc") (Syntax: '"UL = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = BoFalse") (Syntax: '"De = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = BoTrue") (Syntax: '"De = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = SB") (Syntax: '"De = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = By") (Syntax: '"De = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = Sh") (Syntax: '"De = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = US") (Syntax: '"De = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = [In]") (Syntax: '"De = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = UI") (Syntax: '"De = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = Lo") (Syntax: '"De = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = UL") (Syntax: '"De = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = De") (Syntax: '"De = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = Si") (Syntax: '"De = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = [Do]") (Syntax: '"De = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = St") (Syntax: '"De = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = Ob") (Syntax: '"De = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De = Tc") (Syntax: '"De = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De = Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = BoFalse") (Syntax: '"Si = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = BoTrue") (Syntax: '"Si = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = SB") (Syntax: '"Si = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = By") (Syntax: '"Si = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = Sh") (Syntax: '"Si = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = US") (Syntax: '"Si = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = [In]") (Syntax: '"Si = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = UI") (Syntax: '"Si = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = Lo") (Syntax: '"Si = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = UL") (Syntax: '"Si = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = De") (Syntax: '"Si = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = Si") (Syntax: '"Si = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = [Do]") (Syntax: '"Si = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = St") (Syntax: '"Si = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = Ob") (Syntax: '"Si = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si = Tc") (Syntax: '"Si = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si = Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = BoFalse") (Syntax: '"[Do] = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = BoTrue") (Syntax: '"[Do] = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = SB") (Syntax: '"[Do] = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = By") (Syntax: '"[Do] = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = Sh") (Syntax: '"[Do] = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = US") (Syntax: '"[Do] = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = [In]") (Syntax: '"[Do] = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = UI") (Syntax: '"[Do] = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = Lo") (Syntax: '"[Do] = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = UL") (Syntax: '"[Do] = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = De") (Syntax: '"[Do] = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = Si") (Syntax: '"[Do] = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = [Do]") (Syntax: '"[Do] = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = St") (Syntax: '"[Do] = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = Ob") (Syntax: '"[Do] = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] = Tc") (Syntax: '"[Do] = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] = Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = BoFalse") (Syntax: '"St = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = BoTrue") (Syntax: '"St = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = SB") (Syntax: '"St = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = By") (Syntax: '"St = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Sh") (Syntax: '"St = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = US") (Syntax: '"St = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = [In]") (Syntax: '"St = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = UI") (Syntax: '"St = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Lo") (Syntax: '"St = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = UL") (Syntax: '"St = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = De") (Syntax: '"St = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Si") (Syntax: '"St = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = [Do]") (Syntax: '"St = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = St") (Syntax: '"St = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Ob") (Syntax: '"St = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Tc") (Syntax: '"St = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = BoFalse") (Syntax: '"Ob = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = BoTrue") (Syntax: '"Ob = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = SB") (Syntax: '"Ob = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = By") (Syntax: '"Ob = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = Sh") (Syntax: '"Ob = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = US") (Syntax: '"Ob = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = [In]") (Syntax: '"Ob = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = UI") (Syntax: '"Ob = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = Lo") (Syntax: '"Ob = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = UL") (Syntax: '"Ob = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = De") (Syntax: '"Ob = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = Si") (Syntax: '"Ob = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = [Do]") (Syntax: '"Ob = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = St") (Syntax: '"Ob = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = Ob") (Syntax: '"Ob = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = Tc") (Syntax: '"Ob = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = BoFalse") (Syntax: '"Tc = BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c = BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c = BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = BoTrue") (Syntax: '"Tc = BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = SB") (Syntax: '"Tc = SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = SB') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = By") (Syntax: '"Tc = By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = By') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = Sh") (Syntax: '"Tc = Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = US") (Syntax: '"Tc = US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = US') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = [In]") (Syntax: '"Tc = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = UI") (Syntax: '"Tc = UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = UI') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = Lo") (Syntax: '"Tc = Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = UL") (Syntax: '"Tc = UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = UL') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = De") (Syntax: '"Tc = De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = De') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = Si") (Syntax: '"Tc = Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = Si') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc = [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc = [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = [Do]") (Syntax: '"Tc = [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = St") (Syntax: '"Tc = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = Ob") (Syntax: '"Tc = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc = Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc = Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc = Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc = Tc") (Syntax: '"Tc = Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc = Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc = Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> BoFalse") (Syntax: '"BoFalse <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> BoTrue") (Syntax: '"BoFalse <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> SB") (Syntax: '"BoFalse <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> By") (Syntax: '"BoFalse <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> Sh") (Syntax: '"BoFalse <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> US") (Syntax: '"BoFalse <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> [In]") (Syntax: '"BoFalse <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> UI") (Syntax: '"BoFalse <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> Lo") (Syntax: '"BoFalse <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> UL") (Syntax: '"BoFalse <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> De") (Syntax: '"BoFalse <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> Si") (Syntax: '"BoFalse <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> [Do]") (Syntax: '"BoFalse <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> St") (Syntax: '"BoFalse <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> Ob") (Syntax: '"BoFalse <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <> Tc") (Syntax: '"BoFalse <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> BoFalse") (Syntax: '"BoTrue <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> BoTrue") (Syntax: '"BoTrue <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> SB") (Syntax: '"BoTrue <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> By") (Syntax: '"BoTrue <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> Sh") (Syntax: '"BoTrue <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> US") (Syntax: '"BoTrue <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> [In]") (Syntax: '"BoTrue <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> UI") (Syntax: '"BoTrue <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> Lo") (Syntax: '"BoTrue <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> UL") (Syntax: '"BoTrue <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> De") (Syntax: '"BoTrue <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> Si") (Syntax: '"BoTrue <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> [Do]") (Syntax: '"BoTrue <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> St") (Syntax: '"BoTrue <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> Ob") (Syntax: '"BoTrue <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <> Tc") (Syntax: '"BoTrue <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> BoFalse") (Syntax: '"SB <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> BoTrue") (Syntax: '"SB <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> SB") (Syntax: '"SB <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> By") (Syntax: '"SB <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> Sh") (Syntax: '"SB <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> US") (Syntax: '"SB <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> [In]") (Syntax: '"SB <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> UI") (Syntax: '"SB <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> Lo") (Syntax: '"SB <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> UL") (Syntax: '"SB <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> De") (Syntax: '"SB <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> Si") (Syntax: '"SB <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> [Do]") (Syntax: '"SB <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> St") (Syntax: '"SB <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> Ob") (Syntax: '"SB <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <> Tc") (Syntax: '"SB <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> BoFalse") (Syntax: '"By <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> BoTrue") (Syntax: '"By <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> SB") (Syntax: '"By <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> By") (Syntax: '"By <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> Sh") (Syntax: '"By <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> US") (Syntax: '"By <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> [In]") (Syntax: '"By <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> UI") (Syntax: '"By <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> Lo") (Syntax: '"By <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> UL") (Syntax: '"By <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> De") (Syntax: '"By <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> Si") (Syntax: '"By <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> [Do]") (Syntax: '"By <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> St") (Syntax: '"By <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> Ob") (Syntax: '"By <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <> Tc") (Syntax: '"By <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> BoFalse") (Syntax: '"Sh <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> BoTrue") (Syntax: '"Sh <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> SB") (Syntax: '"Sh <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> By") (Syntax: '"Sh <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> Sh") (Syntax: '"Sh <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> US") (Syntax: '"Sh <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> [In]") (Syntax: '"Sh <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> UI") (Syntax: '"Sh <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> Lo") (Syntax: '"Sh <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> UL") (Syntax: '"Sh <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> De") (Syntax: '"Sh <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> Si") (Syntax: '"Sh <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> [Do]") (Syntax: '"Sh <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> St") (Syntax: '"Sh <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> Ob") (Syntax: '"Sh <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <> Tc") (Syntax: '"Sh <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> BoFalse") (Syntax: '"US <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> BoTrue") (Syntax: '"US <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> SB") (Syntax: '"US <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> By") (Syntax: '"US <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> Sh") (Syntax: '"US <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> US") (Syntax: '"US <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> [In]") (Syntax: '"US <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> UI") (Syntax: '"US <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> Lo") (Syntax: '"US <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> UL") (Syntax: '"US <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> De") (Syntax: '"US <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> Si") (Syntax: '"US <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> [Do]") (Syntax: '"US <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> St") (Syntax: '"US <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> Ob") (Syntax: '"US <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <> Tc") (Syntax: '"US <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> BoFalse") (Syntax: '"[In] <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> BoTrue") (Syntax: '"[In] <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> SB") (Syntax: '"[In] <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> By") (Syntax: '"[In] <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> Sh") (Syntax: '"[In] <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> US") (Syntax: '"[In] <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> [In]") (Syntax: '"[In] <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> UI") (Syntax: '"[In] <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> Lo") (Syntax: '"[In] <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> UL") (Syntax: '"[In] <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> De") (Syntax: '"[In] <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> Si") (Syntax: '"[In] <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> [Do]") (Syntax: '"[In] <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> St") (Syntax: '"[In] <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> Ob") (Syntax: '"[In] <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> Tc") (Syntax: '"[In] <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> BoFalse") (Syntax: '"UI <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> BoTrue") (Syntax: '"UI <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> SB") (Syntax: '"UI <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> By") (Syntax: '"UI <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> Sh") (Syntax: '"UI <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> US") (Syntax: '"UI <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> [In]") (Syntax: '"UI <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> UI") (Syntax: '"UI <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> Lo") (Syntax: '"UI <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> UL") (Syntax: '"UI <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> De") (Syntax: '"UI <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> Si") (Syntax: '"UI <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> [Do]") (Syntax: '"UI <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> St") (Syntax: '"UI <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> Ob") (Syntax: '"UI <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <> Tc") (Syntax: '"UI <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> BoFalse") (Syntax: '"Lo <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> BoTrue") (Syntax: '"Lo <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> SB") (Syntax: '"Lo <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> By") (Syntax: '"Lo <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> Sh") (Syntax: '"Lo <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> US") (Syntax: '"Lo <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> [In]") (Syntax: '"Lo <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> UI") (Syntax: '"Lo <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> Lo") (Syntax: '"Lo <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> UL") (Syntax: '"Lo <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> De") (Syntax: '"Lo <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> Si") (Syntax: '"Lo <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> [Do]") (Syntax: '"Lo <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> St") (Syntax: '"Lo <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> Ob") (Syntax: '"Lo <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <> Tc") (Syntax: '"Lo <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <> Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> BoFalse") (Syntax: '"UL <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> BoTrue") (Syntax: '"UL <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> SB") (Syntax: '"UL <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> By") (Syntax: '"UL <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> Sh") (Syntax: '"UL <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> US") (Syntax: '"UL <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> [In]") (Syntax: '"UL <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> UI") (Syntax: '"UL <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> Lo") (Syntax: '"UL <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> UL") (Syntax: '"UL <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> De") (Syntax: '"UL <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> Si") (Syntax: '"UL <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> [Do]") (Syntax: '"UL <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> St") (Syntax: '"UL <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> Ob") (Syntax: '"UL <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <> Tc") (Syntax: '"UL <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> BoFalse") (Syntax: '"De <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> BoTrue") (Syntax: '"De <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> SB") (Syntax: '"De <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> By") (Syntax: '"De <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> Sh") (Syntax: '"De <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> US") (Syntax: '"De <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> [In]") (Syntax: '"De <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> UI") (Syntax: '"De <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> Lo") (Syntax: '"De <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> UL") (Syntax: '"De <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> De") (Syntax: '"De <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> Si") (Syntax: '"De <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> [Do]") (Syntax: '"De <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> St") (Syntax: '"De <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> Ob") (Syntax: '"De <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <> Tc") (Syntax: '"De <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <> Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> BoFalse") (Syntax: '"Si <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> BoTrue") (Syntax: '"Si <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> SB") (Syntax: '"Si <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> By") (Syntax: '"Si <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> Sh") (Syntax: '"Si <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> US") (Syntax: '"Si <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> [In]") (Syntax: '"Si <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> UI") (Syntax: '"Si <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> Lo") (Syntax: '"Si <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> UL") (Syntax: '"Si <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> De") (Syntax: '"Si <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> Si") (Syntax: '"Si <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> [Do]") (Syntax: '"Si <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> St") (Syntax: '"Si <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> Ob") (Syntax: '"Si <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <> Tc") (Syntax: '"Si <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <> Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> BoFalse") (Syntax: '"[Do] <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> BoTrue") (Syntax: '"[Do] <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> SB") (Syntax: '"[Do] <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> By") (Syntax: '"[Do] <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> Sh") (Syntax: '"[Do] <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> US") (Syntax: '"[Do] <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> [In]") (Syntax: '"[Do] <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> UI") (Syntax: '"[Do] <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> Lo") (Syntax: '"[Do] <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> UL") (Syntax: '"[Do] <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> De") (Syntax: '"[Do] <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> Si") (Syntax: '"[Do] <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> [Do]") (Syntax: '"[Do] <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> St") (Syntax: '"[Do] <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> Ob") (Syntax: '"[Do] <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <> Tc") (Syntax: '"[Do] <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <> Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> BoFalse") (Syntax: '"St <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> BoTrue") (Syntax: '"St <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> SB") (Syntax: '"St <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> By") (Syntax: '"St <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Sh") (Syntax: '"St <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> US") (Syntax: '"St <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> [In]") (Syntax: '"St <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> UI") (Syntax: '"St <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Lo") (Syntax: '"St <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> UL") (Syntax: '"St <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> De") (Syntax: '"St <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Si") (Syntax: '"St <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> [Do]") (Syntax: '"St <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> St") (Syntax: '"St <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Ob") (Syntax: '"St <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Tc") (Syntax: '"St <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> BoFalse") (Syntax: '"Ob <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> BoTrue") (Syntax: '"Ob <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> SB") (Syntax: '"Ob <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> By") (Syntax: '"Ob <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> Sh") (Syntax: '"Ob <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> US") (Syntax: '"Ob <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> [In]") (Syntax: '"Ob <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> UI") (Syntax: '"Ob <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> Lo") (Syntax: '"Ob <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> UL") (Syntax: '"Ob <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> De") (Syntax: '"Ob <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> Si") (Syntax: '"Ob <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> [Do]") (Syntax: '"Ob <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> St") (Syntax: '"Ob <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> Ob") (Syntax: '"Ob <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> Tc") (Syntax: '"Ob <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> BoFalse") (Syntax: '"Tc <> BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> BoTrue") (Syntax: '"Tc <> BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> SB") (Syntax: '"Tc <> SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> SB') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> By") (Syntax: '"Tc <> By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> By') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> Sh") (Syntax: '"Tc <> Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> Sh') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> US") (Syntax: '"Tc <> US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> US') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> [In]") (Syntax: '"Tc <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> UI") (Syntax: '"Tc <> UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> UI') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> Lo") (Syntax: '"Tc <> Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> Lo') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> UL") (Syntax: '"Tc <> UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> UL') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> De") (Syntax: '"Tc <> De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> De') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> Si") (Syntax: '"Tc <> Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> Si') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc <> [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc <> [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> [Do]") (Syntax: '"Tc <> [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> St") (Syntax: '"Tc <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> Ob") (Syntax: '"Tc <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <> Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <> Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <> Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <> Tc") (Syntax: '"Tc <> Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <> Tc') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <> Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= BoFalse") (Syntax: '"BoFalse <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= BoTrue") (Syntax: '"BoFalse <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= SB") (Syntax: '"BoFalse <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= By") (Syntax: '"BoFalse <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= Sh") (Syntax: '"BoFalse <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= US") (Syntax: '"BoFalse <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= [In]") (Syntax: '"BoFalse <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= UI") (Syntax: '"BoFalse <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= Lo") (Syntax: '"BoFalse <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= UL") (Syntax: '"BoFalse <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= De") (Syntax: '"BoFalse <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= Si") (Syntax: '"BoFalse <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= [Do]") (Syntax: '"BoFalse <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= St") (Syntax: '"BoFalse <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= Ob") (Syntax: '"BoFalse <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse <= Tc") (Syntax: '"BoFalse <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= BoFalse") (Syntax: '"BoTrue <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= BoTrue") (Syntax: '"BoTrue <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= SB") (Syntax: '"BoTrue <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= By") (Syntax: '"BoTrue <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= Sh") (Syntax: '"BoTrue <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= US") (Syntax: '"BoTrue <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= [In]") (Syntax: '"BoTrue <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= UI") (Syntax: '"BoTrue <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= Lo") (Syntax: '"BoTrue <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= UL") (Syntax: '"BoTrue <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= De") (Syntax: '"BoTrue <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= Si") (Syntax: '"BoTrue <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= [Do]") (Syntax: '"BoTrue <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= St") (Syntax: '"BoTrue <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= Ob") (Syntax: '"BoTrue <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue <= Tc") (Syntax: '"BoTrue <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= BoFalse") (Syntax: '"SB <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= BoTrue") (Syntax: '"SB <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= SB") (Syntax: '"SB <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= By") (Syntax: '"SB <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= Sh") (Syntax: '"SB <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= US") (Syntax: '"SB <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= [In]") (Syntax: '"SB <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= UI") (Syntax: '"SB <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= Lo") (Syntax: '"SB <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= UL") (Syntax: '"SB <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= De") (Syntax: '"SB <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= Si") (Syntax: '"SB <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= [Do]") (Syntax: '"SB <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= St") (Syntax: '"SB <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= Ob") (Syntax: '"SB <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB <= Tc") (Syntax: '"SB <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= BoFalse") (Syntax: '"By <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= BoTrue") (Syntax: '"By <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= SB") (Syntax: '"By <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= By") (Syntax: '"By <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= Sh") (Syntax: '"By <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= US") (Syntax: '"By <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= [In]") (Syntax: '"By <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= UI") (Syntax: '"By <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= Lo") (Syntax: '"By <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= UL") (Syntax: '"By <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= De") (Syntax: '"By <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= Si") (Syntax: '"By <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= [Do]") (Syntax: '"By <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= St") (Syntax: '"By <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= Ob") (Syntax: '"By <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By <= Tc") (Syntax: '"By <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= BoFalse") (Syntax: '"Sh <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= BoTrue") (Syntax: '"Sh <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= SB") (Syntax: '"Sh <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= By") (Syntax: '"Sh <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= Sh") (Syntax: '"Sh <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= US") (Syntax: '"Sh <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= [In]") (Syntax: '"Sh <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= UI") (Syntax: '"Sh <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= Lo") (Syntax: '"Sh <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= UL") (Syntax: '"Sh <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= De") (Syntax: '"Sh <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= Si") (Syntax: '"Sh <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= [Do]") (Syntax: '"Sh <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= St") (Syntax: '"Sh <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= Ob") (Syntax: '"Sh <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh <= Tc") (Syntax: '"Sh <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= BoFalse") (Syntax: '"US <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= BoTrue") (Syntax: '"US <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= SB") (Syntax: '"US <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= By") (Syntax: '"US <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= Sh") (Syntax: '"US <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= US") (Syntax: '"US <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= [In]") (Syntax: '"US <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= UI") (Syntax: '"US <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= Lo") (Syntax: '"US <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= UL") (Syntax: '"US <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= De") (Syntax: '"US <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= Si") (Syntax: '"US <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= [Do]") (Syntax: '"US <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= St") (Syntax: '"US <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= Ob") (Syntax: '"US <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US <= Tc") (Syntax: '"US <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= BoFalse") (Syntax: '"[In] <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= BoTrue") (Syntax: '"[In] <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= SB") (Syntax: '"[In] <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= By") (Syntax: '"[In] <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= Sh") (Syntax: '"[In] <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= US") (Syntax: '"[In] <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= [In]") (Syntax: '"[In] <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= UI") (Syntax: '"[In] <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= Lo") (Syntax: '"[In] <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= UL") (Syntax: '"[In] <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= De") (Syntax: '"[In] <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= Si") (Syntax: '"[In] <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= [Do]") (Syntax: '"[In] <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= St") (Syntax: '"[In] <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= Ob") (Syntax: '"[In] <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= Tc") (Syntax: '"[In] <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= BoFalse") (Syntax: '"UI <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= BoTrue") (Syntax: '"UI <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= SB") (Syntax: '"UI <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= By") (Syntax: '"UI <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= Sh") (Syntax: '"UI <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= US") (Syntax: '"UI <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= [In]") (Syntax: '"UI <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= UI") (Syntax: '"UI <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= Lo") (Syntax: '"UI <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= UL") (Syntax: '"UI <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= De") (Syntax: '"UI <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= Si") (Syntax: '"UI <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= [Do]") (Syntax: '"UI <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= St") (Syntax: '"UI <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= Ob") (Syntax: '"UI <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI <= Tc") (Syntax: '"UI <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= BoFalse") (Syntax: '"Lo <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= BoTrue") (Syntax: '"Lo <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= SB") (Syntax: '"Lo <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= By") (Syntax: '"Lo <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= Sh") (Syntax: '"Lo <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= US") (Syntax: '"Lo <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= [In]") (Syntax: '"Lo <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= UI") (Syntax: '"Lo <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= Lo") (Syntax: '"Lo <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= UL") (Syntax: '"Lo <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= De") (Syntax: '"Lo <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= Si") (Syntax: '"Lo <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= [Do]") (Syntax: '"Lo <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= St") (Syntax: '"Lo <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= Ob") (Syntax: '"Lo <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo <= Tc") (Syntax: '"Lo <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo <= Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= BoFalse") (Syntax: '"UL <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= BoTrue") (Syntax: '"UL <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= SB") (Syntax: '"UL <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= By") (Syntax: '"UL <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= Sh") (Syntax: '"UL <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= US") (Syntax: '"UL <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= [In]") (Syntax: '"UL <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= UI") (Syntax: '"UL <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= Lo") (Syntax: '"UL <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= UL") (Syntax: '"UL <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= De") (Syntax: '"UL <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= Si") (Syntax: '"UL <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= [Do]") (Syntax: '"UL <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= St") (Syntax: '"UL <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= Ob") (Syntax: '"UL <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL <= Tc") (Syntax: '"UL <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= BoFalse") (Syntax: '"De <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= BoTrue") (Syntax: '"De <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= SB") (Syntax: '"De <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= By") (Syntax: '"De <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= Sh") (Syntax: '"De <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= US") (Syntax: '"De <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= [In]") (Syntax: '"De <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= UI") (Syntax: '"De <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= Lo") (Syntax: '"De <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= UL") (Syntax: '"De <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= De") (Syntax: '"De <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= Si") (Syntax: '"De <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= [Do]") (Syntax: '"De <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= St") (Syntax: '"De <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= Ob") (Syntax: '"De <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De <= Tc") (Syntax: '"De <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De <= Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= BoFalse") (Syntax: '"Si <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= BoTrue") (Syntax: '"Si <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= SB") (Syntax: '"Si <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= By") (Syntax: '"Si <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= Sh") (Syntax: '"Si <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= US") (Syntax: '"Si <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= [In]") (Syntax: '"Si <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= UI") (Syntax: '"Si <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= Lo") (Syntax: '"Si <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= UL") (Syntax: '"Si <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= De") (Syntax: '"Si <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= Si") (Syntax: '"Si <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= [Do]") (Syntax: '"Si <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= St") (Syntax: '"Si <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= Ob") (Syntax: '"Si <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si <= Tc") (Syntax: '"Si <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si <= Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= BoFalse") (Syntax: '"[Do] <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= BoTrue") (Syntax: '"[Do] <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= SB") (Syntax: '"[Do] <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= By") (Syntax: '"[Do] <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= Sh") (Syntax: '"[Do] <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= US") (Syntax: '"[Do] <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= [In]") (Syntax: '"[Do] <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= UI") (Syntax: '"[Do] <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= Lo") (Syntax: '"[Do] <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= UL") (Syntax: '"[Do] <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= De") (Syntax: '"[Do] <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= Si") (Syntax: '"[Do] <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= [Do]") (Syntax: '"[Do] <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= St") (Syntax: '"[Do] <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= Ob") (Syntax: '"[Do] <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] <= Tc") (Syntax: '"[Do] <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] <= Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= BoFalse") (Syntax: '"St <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= BoTrue") (Syntax: '"St <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= SB") (Syntax: '"St <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= By") (Syntax: '"St <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Sh") (Syntax: '"St <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= US") (Syntax: '"St <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= [In]") (Syntax: '"St <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= UI") (Syntax: '"St <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Lo") (Syntax: '"St <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= UL") (Syntax: '"St <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= De") (Syntax: '"St <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Si") (Syntax: '"St <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= [Do]") (Syntax: '"St <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= St") (Syntax: '"St <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Ob") (Syntax: '"St <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Tc") (Syntax: '"St <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= BoFalse") (Syntax: '"Ob <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= BoTrue") (Syntax: '"Ob <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= SB") (Syntax: '"Ob <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= By") (Syntax: '"Ob <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= Sh") (Syntax: '"Ob <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= US") (Syntax: '"Ob <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= [In]") (Syntax: '"Ob <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= UI") (Syntax: '"Ob <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= Lo") (Syntax: '"Ob <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= UL") (Syntax: '"Ob <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= De") (Syntax: '"Ob <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= Si") (Syntax: '"Ob <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= [Do]") (Syntax: '"Ob <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= St") (Syntax: '"Ob <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= Ob") (Syntax: '"Ob <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= Tc") (Syntax: '"Ob <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= BoFalse") (Syntax: '"Tc <= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= BoTrue") (Syntax: '"Tc <= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= SB") (Syntax: '"Tc <= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= By") (Syntax: '"Tc <= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= Sh") (Syntax: '"Tc <= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= US") (Syntax: '"Tc <= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= [In]") (Syntax: '"Tc <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= UI") (Syntax: '"Tc <= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= Lo") (Syntax: '"Tc <= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= UL") (Syntax: '"Tc <= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= De") (Syntax: '"Tc <= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= Si") (Syntax: '"Tc <= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc <= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc <= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= [Do]") (Syntax: '"Tc <= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= St") (Syntax: '"Tc <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= Ob") (Syntax: '"Tc <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc <= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc <= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc <= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc <= Tc") (Syntax: '"Tc <= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc <= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc <= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= BoFalse") (Syntax: '"BoFalse >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= BoTrue") (Syntax: '"BoFalse >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= SB") (Syntax: '"BoFalse >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= By") (Syntax: '"BoFalse >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= Sh") (Syntax: '"BoFalse >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= US") (Syntax: '"BoFalse >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= [In]") (Syntax: '"BoFalse >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= UI") (Syntax: '"BoFalse >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= Lo") (Syntax: '"BoFalse >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= UL") (Syntax: '"BoFalse >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= De") (Syntax: '"BoFalse >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= Si") (Syntax: '"BoFalse >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= [Do]") (Syntax: '"BoFalse >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= St") (Syntax: '"BoFalse >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= Ob") (Syntax: '"BoFalse >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse >= Tc") (Syntax: '"BoFalse >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= BoFalse") (Syntax: '"BoTrue >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= BoTrue") (Syntax: '"BoTrue >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= SB") (Syntax: '"BoTrue >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= By") (Syntax: '"BoTrue >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= Sh") (Syntax: '"BoTrue >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= US") (Syntax: '"BoTrue >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= [In]") (Syntax: '"BoTrue >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= UI") (Syntax: '"BoTrue >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= Lo") (Syntax: '"BoTrue >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= UL") (Syntax: '"BoTrue >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= De") (Syntax: '"BoTrue >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= Si") (Syntax: '"BoTrue >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= [Do]") (Syntax: '"BoTrue >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= St") (Syntax: '"BoTrue >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= Ob") (Syntax: '"BoTrue >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue >= Tc") (Syntax: '"BoTrue >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= BoFalse") (Syntax: '"SB >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= BoTrue") (Syntax: '"SB >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= SB") (Syntax: '"SB >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= By") (Syntax: '"SB >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= Sh") (Syntax: '"SB >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= US") (Syntax: '"SB >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= [In]") (Syntax: '"SB >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= UI") (Syntax: '"SB >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= Lo") (Syntax: '"SB >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= UL") (Syntax: '"SB >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= De") (Syntax: '"SB >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= Si") (Syntax: '"SB >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= [Do]") (Syntax: '"SB >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= St") (Syntax: '"SB >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= Ob") (Syntax: '"SB >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB >= Tc") (Syntax: '"SB >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= BoFalse") (Syntax: '"By >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= BoTrue") (Syntax: '"By >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= SB") (Syntax: '"By >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= By") (Syntax: '"By >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= Sh") (Syntax: '"By >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= US") (Syntax: '"By >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= [In]") (Syntax: '"By >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= UI") (Syntax: '"By >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= Lo") (Syntax: '"By >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= UL") (Syntax: '"By >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= De") (Syntax: '"By >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= Si") (Syntax: '"By >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= [Do]") (Syntax: '"By >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= St") (Syntax: '"By >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= Ob") (Syntax: '"By >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By >= Tc") (Syntax: '"By >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= BoFalse") (Syntax: '"Sh >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= BoTrue") (Syntax: '"Sh >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= SB") (Syntax: '"Sh >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= By") (Syntax: '"Sh >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= Sh") (Syntax: '"Sh >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= US") (Syntax: '"Sh >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= [In]") (Syntax: '"Sh >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= UI") (Syntax: '"Sh >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= Lo") (Syntax: '"Sh >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= UL") (Syntax: '"Sh >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= De") (Syntax: '"Sh >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= Si") (Syntax: '"Sh >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= [Do]") (Syntax: '"Sh >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= St") (Syntax: '"Sh >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= Ob") (Syntax: '"Sh >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh >= Tc") (Syntax: '"Sh >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= BoFalse") (Syntax: '"US >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= BoTrue") (Syntax: '"US >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= SB") (Syntax: '"US >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= By") (Syntax: '"US >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= Sh") (Syntax: '"US >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= US") (Syntax: '"US >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= [In]") (Syntax: '"US >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= UI") (Syntax: '"US >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= Lo") (Syntax: '"US >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= UL") (Syntax: '"US >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= De") (Syntax: '"US >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= Si") (Syntax: '"US >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= [Do]") (Syntax: '"US >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= St") (Syntax: '"US >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= Ob") (Syntax: '"US >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US >= Tc") (Syntax: '"US >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= BoFalse") (Syntax: '"[In] >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= BoTrue") (Syntax: '"[In] >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= SB") (Syntax: '"[In] >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= By") (Syntax: '"[In] >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= Sh") (Syntax: '"[In] >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= US") (Syntax: '"[In] >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= [In]") (Syntax: '"[In] >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= UI") (Syntax: '"[In] >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= Lo") (Syntax: '"[In] >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= UL") (Syntax: '"[In] >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= De") (Syntax: '"[In] >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= Si") (Syntax: '"[In] >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= [Do]") (Syntax: '"[In] >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= St") (Syntax: '"[In] >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= Ob") (Syntax: '"[In] >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= Tc") (Syntax: '"[In] >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= BoFalse") (Syntax: '"UI >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= BoTrue") (Syntax: '"UI >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= SB") (Syntax: '"UI >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= By") (Syntax: '"UI >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= Sh") (Syntax: '"UI >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= US") (Syntax: '"UI >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= [In]") (Syntax: '"UI >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= UI") (Syntax: '"UI >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= Lo") (Syntax: '"UI >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= UL") (Syntax: '"UI >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= De") (Syntax: '"UI >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= Si") (Syntax: '"UI >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= [Do]") (Syntax: '"UI >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= St") (Syntax: '"UI >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= Ob") (Syntax: '"UI >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI >= Tc") (Syntax: '"UI >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= BoFalse") (Syntax: '"Lo >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= BoTrue") (Syntax: '"Lo >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= SB") (Syntax: '"Lo >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= By") (Syntax: '"Lo >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= Sh") (Syntax: '"Lo >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= US") (Syntax: '"Lo >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= [In]") (Syntax: '"Lo >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= UI") (Syntax: '"Lo >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= Lo") (Syntax: '"Lo >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= UL") (Syntax: '"Lo >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= De") (Syntax: '"Lo >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= Si") (Syntax: '"Lo >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= [Do]") (Syntax: '"Lo >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= St") (Syntax: '"Lo >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= Ob") (Syntax: '"Lo >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo >= Tc") (Syntax: '"Lo >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo >= Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= BoFalse") (Syntax: '"UL >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= BoTrue") (Syntax: '"UL >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= SB") (Syntax: '"UL >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= By") (Syntax: '"UL >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= Sh") (Syntax: '"UL >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= US") (Syntax: '"UL >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= [In]") (Syntax: '"UL >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= UI") (Syntax: '"UL >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= Lo") (Syntax: '"UL >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= UL") (Syntax: '"UL >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= De") (Syntax: '"UL >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= Si") (Syntax: '"UL >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= [Do]") (Syntax: '"UL >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= St") (Syntax: '"UL >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= Ob") (Syntax: '"UL >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL >= Tc") (Syntax: '"UL >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= BoFalse") (Syntax: '"De >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= BoTrue") (Syntax: '"De >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= SB") (Syntax: '"De >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= By") (Syntax: '"De >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= Sh") (Syntax: '"De >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= US") (Syntax: '"De >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= [In]") (Syntax: '"De >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= UI") (Syntax: '"De >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= Lo") (Syntax: '"De >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= UL") (Syntax: '"De >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= De") (Syntax: '"De >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= Si") (Syntax: '"De >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= [Do]") (Syntax: '"De >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= St") (Syntax: '"De >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= Ob") (Syntax: '"De >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De >= Tc") (Syntax: '"De >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De >= Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= BoFalse") (Syntax: '"Si >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= BoTrue") (Syntax: '"Si >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= SB") (Syntax: '"Si >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= By") (Syntax: '"Si >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= Sh") (Syntax: '"Si >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= US") (Syntax: '"Si >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= [In]") (Syntax: '"Si >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= UI") (Syntax: '"Si >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= Lo") (Syntax: '"Si >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= UL") (Syntax: '"Si >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= De") (Syntax: '"Si >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= Si") (Syntax: '"Si >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= [Do]") (Syntax: '"Si >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= St") (Syntax: '"Si >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= Ob") (Syntax: '"Si >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si >= Tc") (Syntax: '"Si >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si >= Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= BoFalse") (Syntax: '"[Do] >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= BoTrue") (Syntax: '"[Do] >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= SB") (Syntax: '"[Do] >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= By") (Syntax: '"[Do] >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= Sh") (Syntax: '"[Do] >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= US") (Syntax: '"[Do] >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= [In]") (Syntax: '"[Do] >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= UI") (Syntax: '"[Do] >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= Lo") (Syntax: '"[Do] >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= UL") (Syntax: '"[Do] >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= De") (Syntax: '"[Do] >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= Si") (Syntax: '"[Do] >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= [Do]") (Syntax: '"[Do] >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= St") (Syntax: '"[Do] >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= Ob") (Syntax: '"[Do] >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] >= Tc") (Syntax: '"[Do] >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] >= Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= BoFalse") (Syntax: '"St >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= BoTrue") (Syntax: '"St >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= SB") (Syntax: '"St >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= By") (Syntax: '"St >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Sh") (Syntax: '"St >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= US") (Syntax: '"St >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= [In]") (Syntax: '"St >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= UI") (Syntax: '"St >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Lo") (Syntax: '"St >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= UL") (Syntax: '"St >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= De") (Syntax: '"St >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Si") (Syntax: '"St >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= [Do]") (Syntax: '"St >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= St") (Syntax: '"St >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Ob") (Syntax: '"St >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Tc") (Syntax: '"St >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= BoFalse") (Syntax: '"Ob >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= BoTrue") (Syntax: '"Ob >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= SB") (Syntax: '"Ob >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= By") (Syntax: '"Ob >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= Sh") (Syntax: '"Ob >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= US") (Syntax: '"Ob >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= [In]") (Syntax: '"Ob >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= UI") (Syntax: '"Ob >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= Lo") (Syntax: '"Ob >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= UL") (Syntax: '"Ob >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= De") (Syntax: '"Ob >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= Si") (Syntax: '"Ob >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= [Do]") (Syntax: '"Ob >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= St") (Syntax: '"Ob >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= Ob") (Syntax: '"Ob >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= Tc") (Syntax: '"Ob >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= BoFalse") (Syntax: '"Tc >= BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= BoTrue") (Syntax: '"Tc >= BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= SB") (Syntax: '"Tc >= SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= By") (Syntax: '"Tc >= By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= Sh") (Syntax: '"Tc >= Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= US") (Syntax: '"Tc >= US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= [In]") (Syntax: '"Tc >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= UI") (Syntax: '"Tc >= UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= Lo") (Syntax: '"Tc >= Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= UL") (Syntax: '"Tc >= UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= De") (Syntax: '"Tc >= De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= Si") (Syntax: '"Tc >= Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc >= [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc >= [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= [Do]") (Syntax: '"Tc >= [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= St") (Syntax: '"Tc >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= Ob") (Syntax: '"Tc >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc >= Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc >= Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc >= Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc >= Tc") (Syntax: '"Tc >= Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc >= Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc >= Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < BoFalse") (Syntax: '"BoFalse < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < BoTrue") (Syntax: '"BoFalse < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < SB") (Syntax: '"BoFalse < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < By") (Syntax: '"BoFalse < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < Sh") (Syntax: '"BoFalse < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < US") (Syntax: '"BoFalse < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < [In]") (Syntax: '"BoFalse < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < UI") (Syntax: '"BoFalse < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < Lo") (Syntax: '"BoFalse < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < UL") (Syntax: '"BoFalse < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < De") (Syntax: '"BoFalse < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < Si") (Syntax: '"BoFalse < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < [Do]") (Syntax: '"BoFalse < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < St") (Syntax: '"BoFalse < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < Ob") (Syntax: '"BoFalse < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse < Tc") (Syntax: '"BoFalse < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < BoFalse") (Syntax: '"BoTrue < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < BoTrue") (Syntax: '"BoTrue < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < SB") (Syntax: '"BoTrue < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < By") (Syntax: '"BoTrue < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < Sh") (Syntax: '"BoTrue < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < US") (Syntax: '"BoTrue < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < [In]") (Syntax: '"BoTrue < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < UI") (Syntax: '"BoTrue < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < Lo") (Syntax: '"BoTrue < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < UL") (Syntax: '"BoTrue < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < De") (Syntax: '"BoTrue < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < Si") (Syntax: '"BoTrue < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < [Do]") (Syntax: '"BoTrue < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < St") (Syntax: '"BoTrue < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < Ob") (Syntax: '"BoTrue < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue < Tc") (Syntax: '"BoTrue < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < BoFalse") (Syntax: '"SB < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < BoTrue") (Syntax: '"SB < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < SB") (Syntax: '"SB < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < By") (Syntax: '"SB < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < Sh") (Syntax: '"SB < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < US") (Syntax: '"SB < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < [In]") (Syntax: '"SB < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < UI") (Syntax: '"SB < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < Lo") (Syntax: '"SB < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < UL") (Syntax: '"SB < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < De") (Syntax: '"SB < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < Si") (Syntax: '"SB < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < [Do]") (Syntax: '"SB < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < St") (Syntax: '"SB < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < Ob") (Syntax: '"SB < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB < Tc") (Syntax: '"SB < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < BoFalse") (Syntax: '"By < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < BoTrue") (Syntax: '"By < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < SB") (Syntax: '"By < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < By") (Syntax: '"By < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < Sh") (Syntax: '"By < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < US") (Syntax: '"By < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < [In]") (Syntax: '"By < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < UI") (Syntax: '"By < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < Lo") (Syntax: '"By < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < UL") (Syntax: '"By < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < De") (Syntax: '"By < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < Si") (Syntax: '"By < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < [Do]") (Syntax: '"By < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < St") (Syntax: '"By < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < Ob") (Syntax: '"By < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By < Tc") (Syntax: '"By < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < BoFalse") (Syntax: '"Sh < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < BoTrue") (Syntax: '"Sh < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < SB") (Syntax: '"Sh < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < By") (Syntax: '"Sh < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < Sh") (Syntax: '"Sh < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < US") (Syntax: '"Sh < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < [In]") (Syntax: '"Sh < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < UI") (Syntax: '"Sh < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < Lo") (Syntax: '"Sh < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < UL") (Syntax: '"Sh < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < De") (Syntax: '"Sh < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < Si") (Syntax: '"Sh < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < [Do]") (Syntax: '"Sh < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < St") (Syntax: '"Sh < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < Ob") (Syntax: '"Sh < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh < Tc") (Syntax: '"Sh < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < BoFalse") (Syntax: '"US < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < BoTrue") (Syntax: '"US < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < SB") (Syntax: '"US < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < By") (Syntax: '"US < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < Sh") (Syntax: '"US < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < US") (Syntax: '"US < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < [In]") (Syntax: '"US < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < UI") (Syntax: '"US < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < Lo") (Syntax: '"US < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < UL") (Syntax: '"US < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < De") (Syntax: '"US < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < Si") (Syntax: '"US < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < [Do]") (Syntax: '"US < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < St") (Syntax: '"US < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < Ob") (Syntax: '"US < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US < Tc") (Syntax: '"US < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < BoFalse") (Syntax: '"[In] < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < BoTrue") (Syntax: '"[In] < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < SB") (Syntax: '"[In] < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < By") (Syntax: '"[In] < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < Sh") (Syntax: '"[In] < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < US") (Syntax: '"[In] < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < [In]") (Syntax: '"[In] < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < UI") (Syntax: '"[In] < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < Lo") (Syntax: '"[In] < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < UL") (Syntax: '"[In] < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < De") (Syntax: '"[In] < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < Si") (Syntax: '"[In] < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < [Do]") (Syntax: '"[In] < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < St") (Syntax: '"[In] < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < Ob") (Syntax: '"[In] < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < Tc") (Syntax: '"[In] < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < BoFalse") (Syntax: '"UI < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < BoTrue") (Syntax: '"UI < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < SB") (Syntax: '"UI < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < By") (Syntax: '"UI < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < Sh") (Syntax: '"UI < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < US") (Syntax: '"UI < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < [In]") (Syntax: '"UI < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < UI") (Syntax: '"UI < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < Lo") (Syntax: '"UI < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < UL") (Syntax: '"UI < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < De") (Syntax: '"UI < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < Si") (Syntax: '"UI < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < [Do]") (Syntax: '"UI < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < St") (Syntax: '"UI < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < Ob") (Syntax: '"UI < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI < Tc") (Syntax: '"UI < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < BoFalse") (Syntax: '"Lo < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < BoTrue") (Syntax: '"Lo < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < SB") (Syntax: '"Lo < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < By") (Syntax: '"Lo < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < Sh") (Syntax: '"Lo < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < US") (Syntax: '"Lo < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < [In]") (Syntax: '"Lo < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < UI") (Syntax: '"Lo < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < Lo") (Syntax: '"Lo < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < UL") (Syntax: '"Lo < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < De") (Syntax: '"Lo < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < Si") (Syntax: '"Lo < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < [Do]") (Syntax: '"Lo < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < St") (Syntax: '"Lo < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < Ob") (Syntax: '"Lo < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo < Tc") (Syntax: '"Lo < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo < Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < BoFalse") (Syntax: '"UL < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < BoTrue") (Syntax: '"UL < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < SB") (Syntax: '"UL < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < By") (Syntax: '"UL < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < Sh") (Syntax: '"UL < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < US") (Syntax: '"UL < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < [In]") (Syntax: '"UL < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < UI") (Syntax: '"UL < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < Lo") (Syntax: '"UL < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < UL") (Syntax: '"UL < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < De") (Syntax: '"UL < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < Si") (Syntax: '"UL < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < [Do]") (Syntax: '"UL < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < St") (Syntax: '"UL < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < Ob") (Syntax: '"UL < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL < Tc") (Syntax: '"UL < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < BoFalse") (Syntax: '"De < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < BoTrue") (Syntax: '"De < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < SB") (Syntax: '"De < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < By") (Syntax: '"De < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < Sh") (Syntax: '"De < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < US") (Syntax: '"De < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < [In]") (Syntax: '"De < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < UI") (Syntax: '"De < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < Lo") (Syntax: '"De < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < UL") (Syntax: '"De < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < De") (Syntax: '"De < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < Si") (Syntax: '"De < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < [Do]") (Syntax: '"De < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < St") (Syntax: '"De < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < Ob") (Syntax: '"De < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De < Tc") (Syntax: '"De < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De < Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < BoFalse") (Syntax: '"Si < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < BoTrue") (Syntax: '"Si < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < SB") (Syntax: '"Si < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < By") (Syntax: '"Si < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < Sh") (Syntax: '"Si < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < US") (Syntax: '"Si < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < [In]") (Syntax: '"Si < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < UI") (Syntax: '"Si < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < Lo") (Syntax: '"Si < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < UL") (Syntax: '"Si < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < De") (Syntax: '"Si < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < Si") (Syntax: '"Si < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < [Do]") (Syntax: '"Si < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < St") (Syntax: '"Si < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < Ob") (Syntax: '"Si < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si < Tc") (Syntax: '"Si < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si < Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < BoFalse") (Syntax: '"[Do] < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < BoTrue") (Syntax: '"[Do] < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < SB") (Syntax: '"[Do] < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < By") (Syntax: '"[Do] < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < Sh") (Syntax: '"[Do] < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < US") (Syntax: '"[Do] < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < [In]") (Syntax: '"[Do] < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < UI") (Syntax: '"[Do] < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < Lo") (Syntax: '"[Do] < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < UL") (Syntax: '"[Do] < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < De") (Syntax: '"[Do] < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < Si") (Syntax: '"[Do] < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < [Do]") (Syntax: '"[Do] < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < St") (Syntax: '"[Do] < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < Ob") (Syntax: '"[Do] < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] < Tc") (Syntax: '"[Do] < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] < Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < BoFalse") (Syntax: '"St < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < BoTrue") (Syntax: '"St < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < SB") (Syntax: '"St < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < By") (Syntax: '"St < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Sh") (Syntax: '"St < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < US") (Syntax: '"St < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < [In]") (Syntax: '"St < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < UI") (Syntax: '"St < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Lo") (Syntax: '"St < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < UL") (Syntax: '"St < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < De") (Syntax: '"St < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Si") (Syntax: '"St < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < [Do]") (Syntax: '"St < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < St") (Syntax: '"St < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Ob") (Syntax: '"St < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Tc") (Syntax: '"St < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < BoFalse") (Syntax: '"Ob < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < BoTrue") (Syntax: '"Ob < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < SB") (Syntax: '"Ob < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < By") (Syntax: '"Ob < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < Sh") (Syntax: '"Ob < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < US") (Syntax: '"Ob < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < [In]") (Syntax: '"Ob < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < UI") (Syntax: '"Ob < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < Lo") (Syntax: '"Ob < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < UL") (Syntax: '"Ob < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < De") (Syntax: '"Ob < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < Si") (Syntax: '"Ob < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < [Do]") (Syntax: '"Ob < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < St") (Syntax: '"Ob < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < Ob") (Syntax: '"Ob < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < Tc") (Syntax: '"Ob < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < BoFalse") (Syntax: '"Tc < BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c < BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c < BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < BoTrue") (Syntax: '"Tc < BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < SB") (Syntax: '"Tc < SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < SB') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < By") (Syntax: '"Tc < By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < By') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < Sh") (Syntax: '"Tc < Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < Sh') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < US") (Syntax: '"Tc < US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < US') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < [In]") (Syntax: '"Tc < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < UI") (Syntax: '"Tc < UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < UI') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < Lo") (Syntax: '"Tc < Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < Lo') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < UL") (Syntax: '"Tc < UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < UL') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < De") (Syntax: '"Tc < De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < De') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < Si") (Syntax: '"Tc < Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < Si') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc < [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc < [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < [Do]") (Syntax: '"Tc < [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < St") (Syntax: '"Tc < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < Ob") (Syntax: '"Tc < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc < Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc < Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc < Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc < Tc") (Syntax: '"Tc < Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc < Tc') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc < Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > BoFalse") (Syntax: '"BoFalse > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > BoTrue") (Syntax: '"BoFalse > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > SB") (Syntax: '"BoFalse > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > By") (Syntax: '"BoFalse > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > Sh") (Syntax: '"BoFalse > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > US") (Syntax: '"BoFalse > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > [In]") (Syntax: '"BoFalse > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > UI") (Syntax: '"BoFalse > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > Lo") (Syntax: '"BoFalse > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > UL") (Syntax: '"BoFalse > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > De") (Syntax: '"BoFalse > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > Si") (Syntax: '"BoFalse > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > [Do]") (Syntax: '"BoFalse > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > St") (Syntax: '"BoFalse > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > Ob") (Syntax: '"BoFalse > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse > Tc") (Syntax: '"BoFalse > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > BoFalse") (Syntax: '"BoTrue > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > BoTrue") (Syntax: '"BoTrue > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > SB") (Syntax: '"BoTrue > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > By") (Syntax: '"BoTrue > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > Sh") (Syntax: '"BoTrue > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > US") (Syntax: '"BoTrue > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > [In]") (Syntax: '"BoTrue > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > UI") (Syntax: '"BoTrue > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > Lo") (Syntax: '"BoTrue > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > UL") (Syntax: '"BoTrue > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > De") (Syntax: '"BoTrue > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > Si") (Syntax: '"BoTrue > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > [Do]") (Syntax: '"BoTrue > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > St") (Syntax: '"BoTrue > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > Ob") (Syntax: '"BoTrue > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue > Tc") (Syntax: '"BoTrue > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > BoFalse") (Syntax: '"SB > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > BoTrue") (Syntax: '"SB > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > SB") (Syntax: '"SB > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > By") (Syntax: '"SB > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > Sh") (Syntax: '"SB > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > US") (Syntax: '"SB > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > [In]") (Syntax: '"SB > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > UI") (Syntax: '"SB > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > Lo") (Syntax: '"SB > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > UL") (Syntax: '"SB > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > De") (Syntax: '"SB > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > Si") (Syntax: '"SB > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > [Do]") (Syntax: '"SB > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > St") (Syntax: '"SB > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > Ob") (Syntax: '"SB > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB > Tc") (Syntax: '"SB > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > BoFalse") (Syntax: '"By > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > BoTrue") (Syntax: '"By > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > SB") (Syntax: '"By > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > By") (Syntax: '"By > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > Sh") (Syntax: '"By > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > US") (Syntax: '"By > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > [In]") (Syntax: '"By > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > UI") (Syntax: '"By > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > Lo") (Syntax: '"By > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > UL") (Syntax: '"By > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > De") (Syntax: '"By > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > Si") (Syntax: '"By > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > [Do]") (Syntax: '"By > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > St") (Syntax: '"By > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > Ob") (Syntax: '"By > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By > Tc") (Syntax: '"By > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > BoFalse") (Syntax: '"Sh > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > BoTrue") (Syntax: '"Sh > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > SB") (Syntax: '"Sh > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > By") (Syntax: '"Sh > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > Sh") (Syntax: '"Sh > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > US") (Syntax: '"Sh > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > [In]") (Syntax: '"Sh > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > UI") (Syntax: '"Sh > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > Lo") (Syntax: '"Sh > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > UL") (Syntax: '"Sh > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > De") (Syntax: '"Sh > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > Si") (Syntax: '"Sh > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > [Do]") (Syntax: '"Sh > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > St") (Syntax: '"Sh > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > Ob") (Syntax: '"Sh > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh > Tc") (Syntax: '"Sh > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > BoFalse") (Syntax: '"US > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > BoTrue") (Syntax: '"US > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > SB") (Syntax: '"US > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > By") (Syntax: '"US > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > Sh") (Syntax: '"US > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > US") (Syntax: '"US > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > [In]") (Syntax: '"US > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > UI") (Syntax: '"US > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > Lo") (Syntax: '"US > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > UL") (Syntax: '"US > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > De") (Syntax: '"US > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > Si") (Syntax: '"US > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > [Do]") (Syntax: '"US > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > St") (Syntax: '"US > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > Ob") (Syntax: '"US > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US > Tc") (Syntax: '"US > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > BoFalse") (Syntax: '"[In] > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > BoTrue") (Syntax: '"[In] > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > SB") (Syntax: '"[In] > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > By") (Syntax: '"[In] > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > Sh") (Syntax: '"[In] > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > US") (Syntax: '"[In] > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > [In]") (Syntax: '"[In] > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > UI") (Syntax: '"[In] > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > Lo") (Syntax: '"[In] > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > UL") (Syntax: '"[In] > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > De") (Syntax: '"[In] > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > Si") (Syntax: '"[In] > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > [Do]") (Syntax: '"[In] > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > St") (Syntax: '"[In] > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > Ob") (Syntax: '"[In] > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > Tc") (Syntax: '"[In] > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > BoFalse") (Syntax: '"UI > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > BoTrue") (Syntax: '"UI > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > SB") (Syntax: '"UI > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > By") (Syntax: '"UI > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > Sh") (Syntax: '"UI > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > US") (Syntax: '"UI > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > [In]") (Syntax: '"UI > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > UI") (Syntax: '"UI > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > Lo") (Syntax: '"UI > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > UL") (Syntax: '"UI > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > De") (Syntax: '"UI > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > Si") (Syntax: '"UI > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > [Do]") (Syntax: '"UI > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > St") (Syntax: '"UI > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > Ob") (Syntax: '"UI > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI > Tc") (Syntax: '"UI > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > BoFalse") (Syntax: '"Lo > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > BoTrue") (Syntax: '"Lo > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > SB") (Syntax: '"Lo > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > By") (Syntax: '"Lo > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > Sh") (Syntax: '"Lo > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > US") (Syntax: '"Lo > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > [In]") (Syntax: '"Lo > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > UI") (Syntax: '"Lo > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > Lo") (Syntax: '"Lo > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > UL") (Syntax: '"Lo > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > De") (Syntax: '"Lo > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > Si") (Syntax: '"Lo > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > [Do]") (Syntax: '"Lo > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > St") (Syntax: '"Lo > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > Ob") (Syntax: '"Lo > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo > Tc") (Syntax: '"Lo > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo > Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > BoFalse") (Syntax: '"UL > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > BoTrue") (Syntax: '"UL > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > SB") (Syntax: '"UL > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > By") (Syntax: '"UL > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > Sh") (Syntax: '"UL > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > US") (Syntax: '"UL > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > [In]") (Syntax: '"UL > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > UI") (Syntax: '"UL > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > Lo") (Syntax: '"UL > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > UL") (Syntax: '"UL > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > De") (Syntax: '"UL > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > Si") (Syntax: '"UL > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > [Do]") (Syntax: '"UL > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > St") (Syntax: '"UL > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > Ob") (Syntax: '"UL > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL > Tc") (Syntax: '"UL > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > BoFalse") (Syntax: '"De > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > BoFalse') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > BoTrue") (Syntax: '"De > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > BoTrue') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > SB") (Syntax: '"De > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > SB') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > By") (Syntax: '"De > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > By') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > Sh") (Syntax: '"De > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > Sh') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > US") (Syntax: '"De > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > US') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > [In]") (Syntax: '"De > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > [In]') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > UI") (Syntax: '"De > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > UI') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > Lo") (Syntax: '"De > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > Lo') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > UL") (Syntax: '"De > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > UL') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > De") (Syntax: '"De > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > De') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > Si") (Syntax: '"De > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > [Do]") (Syntax: '"De > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > St") (Syntax: '"De > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > Ob") (Syntax: '"De > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De > Tc") (Syntax: '"De > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De > Tc') - Left: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > BoFalse") (Syntax: '"Si > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > BoFalse') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > BoTrue") (Syntax: '"Si > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > BoTrue') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > SB") (Syntax: '"Si > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > SB') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > By") (Syntax: '"Si > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > By') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > Sh") (Syntax: '"Si > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > Sh') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > US") (Syntax: '"Si > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > US') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > [In]") (Syntax: '"Si > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > [In]') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > UI") (Syntax: '"Si > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > UI') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > Lo") (Syntax: '"Si > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > Lo') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > UL") (Syntax: '"Si > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > UL') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > De") (Syntax: '"Si > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > De') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > Si") (Syntax: '"Si > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > Si') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > [Do]") (Syntax: '"Si > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > St") (Syntax: '"Si > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > Ob") (Syntax: '"Si > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si > Tc") (Syntax: '"Si > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si > Tc') - Left: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > BoFalse") (Syntax: '"[Do] > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > BoFalse') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > BoTrue") (Syntax: '"[Do] > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > BoTrue') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > SB") (Syntax: '"[Do] > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > SB') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > By") (Syntax: '"[Do] > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > By') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > Sh") (Syntax: '"[Do] > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > Sh') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > US") (Syntax: '"[Do] > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > US') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > [In]") (Syntax: '"[Do] > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > [In]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > UI") (Syntax: '"[Do] > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > UI') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > Lo") (Syntax: '"[Do] > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > Lo') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > UL") (Syntax: '"[Do] > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > UL') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > De") (Syntax: '"[Do] > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > De') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > Si") (Syntax: '"[Do] > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > Si') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > [Do]") (Syntax: '"[Do] > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > [Do]') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > St") (Syntax: '"[Do] > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > St') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > Ob") (Syntax: '"[Do] > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] > Tc") (Syntax: '"[Do] > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] > Tc') - Left: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > BoFalse") (Syntax: '"St > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > BoTrue") (Syntax: '"St > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > SB") (Syntax: '"St > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > By") (Syntax: '"St > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Sh") (Syntax: '"St > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > US") (Syntax: '"St > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > [In]") (Syntax: '"St > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > UI") (Syntax: '"St > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Lo") (Syntax: '"St > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > UL") (Syntax: '"St > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > De") (Syntax: '"St > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Si") (Syntax: '"St > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > [Do]") (Syntax: '"St > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > St") (Syntax: '"St > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > St') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Ob") (Syntax: '"St > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Tc") (Syntax: '"St > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > BoFalse") (Syntax: '"Ob > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > BoTrue") (Syntax: '"Ob > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > SB") (Syntax: '"Ob > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > By") (Syntax: '"Ob > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > Sh") (Syntax: '"Ob > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > US") (Syntax: '"Ob > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > [In]") (Syntax: '"Ob > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > UI") (Syntax: '"Ob > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > Lo") (Syntax: '"Ob > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > UL") (Syntax: '"Ob > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > De") (Syntax: '"Ob > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > Si") (Syntax: '"Ob > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > [Do]") (Syntax: '"Ob > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > St") (Syntax: '"Ob > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > Ob") (Syntax: '"Ob > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > Tc") (Syntax: '"Ob > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > BoFalse") (Syntax: '"Tc > BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c > BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c > BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > BoTrue") (Syntax: '"Tc > BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > SB") (Syntax: '"Tc > SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > SB') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > By") (Syntax: '"Tc > By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > By') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > Sh") (Syntax: '"Tc > Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > Sh') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > US") (Syntax: '"Tc > US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > US') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > [In]") (Syntax: '"Tc > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > UI") (Syntax: '"Tc > UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > UI') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > Lo") (Syntax: '"Tc > Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > Lo') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > UL") (Syntax: '"Tc > UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > UL') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > De") (Syntax: '"Tc > De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > De') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Decimal) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > Si") (Syntax: '"Tc > Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > Si') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Single) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc > [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc > [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > [Do]") (Syntax: '"Tc > [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > St") (Syntax: '"Tc > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > Ob") (Syntax: '"Tc > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc > Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc > Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc > Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc > Tc") (Syntax: '"Tc > Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc > Tc') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc > Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor BoFalse") (Syntax: '"BoFalse Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Xor BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor BoTrue") (Syntax: '"BoFalse Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Xor BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor SB") (Syntax: '"BoFalse Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor By") (Syntax: '"BoFalse Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor Sh") (Syntax: '"BoFalse Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor US") (Syntax: '"BoFalse Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor [In]") (Syntax: '"BoFalse Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor UI") (Syntax: '"BoFalse Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor Lo") (Syntax: '"BoFalse Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor UL") (Syntax: '"BoFalse Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor De") (Syntax: '"BoFalse Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor Si") (Syntax: '"BoFalse Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor [Do]") (Syntax: '"BoFalse Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor St") (Syntax: '"BoFalse Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Xor St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor Ob") (Syntax: '"BoFalse Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Xor Tc") (Syntax: '"BoFalse Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor BoFalse") (Syntax: '"BoTrue Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Xor BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor BoTrue") (Syntax: '"BoTrue Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Xor BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor SB") (Syntax: '"BoTrue Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor By") (Syntax: '"BoTrue Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor Sh") (Syntax: '"BoTrue Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor US") (Syntax: '"BoTrue Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor [In]") (Syntax: '"BoTrue Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor UI") (Syntax: '"BoTrue Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor Lo") (Syntax: '"BoTrue Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor UL") (Syntax: '"BoTrue Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor De") (Syntax: '"BoTrue Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor Si") (Syntax: '"BoTrue Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor [Do]") (Syntax: '"BoTrue Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor St") (Syntax: '"BoTrue Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Xor St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor Ob") (Syntax: '"BoTrue Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Xor Tc") (Syntax: '"BoTrue Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor BoFalse") (Syntax: '"SB Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Xor BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor BoTrue") (Syntax: '"SB Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Xor BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor SB") (Syntax: '"SB Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Xor SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor By") (Syntax: '"SB Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor Sh") (Syntax: '"SB Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor US") (Syntax: '"SB Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor [In]") (Syntax: '"SB Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor UI") (Syntax: '"SB Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor Lo") (Syntax: '"SB Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor UL") (Syntax: '"SB Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor De") (Syntax: '"SB Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor Si") (Syntax: '"SB Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor [Do]") (Syntax: '"SB Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor St") (Syntax: '"SB Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor Ob") (Syntax: '"SB Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Xor Tc") (Syntax: '"SB Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor BoFalse") (Syntax: '"By Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor BoTrue") (Syntax: '"By Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor SB") (Syntax: '"By Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor By") (Syntax: '"By Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By Xor By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor Sh") (Syntax: '"By Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor US") (Syntax: '"By Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor [In]") (Syntax: '"By Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor UI") (Syntax: '"By Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor Lo") (Syntax: '"By Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor UL") (Syntax: '"By Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor De") (Syntax: '"By Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor Si") (Syntax: '"By Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor [Do]") (Syntax: '"By Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor St") (Syntax: '"By Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor Ob") (Syntax: '"By Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Xor Tc") (Syntax: '"By Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor BoFalse") (Syntax: '"Sh Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Xor BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor BoTrue") (Syntax: '"Sh Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Xor BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor SB") (Syntax: '"Sh Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Xor SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor By") (Syntax: '"Sh Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Xor By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor Sh") (Syntax: '"Sh Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Xor Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor US") (Syntax: '"Sh Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor [In]") (Syntax: '"Sh Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor UI") (Syntax: '"Sh Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor Lo") (Syntax: '"Sh Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor UL") (Syntax: '"Sh Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor De") (Syntax: '"Sh Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor Si") (Syntax: '"Sh Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor [Do]") (Syntax: '"Sh Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor St") (Syntax: '"Sh Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor Ob") (Syntax: '"Sh Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Xor Tc") (Syntax: '"Sh Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor BoFalse") (Syntax: '"US Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor BoTrue") (Syntax: '"US Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor SB") (Syntax: '"US Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor By") (Syntax: '"US Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US Xor By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor Sh") (Syntax: '"US Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor US") (Syntax: '"US Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US Xor US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor [In]") (Syntax: '"US Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor UI") (Syntax: '"US Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor Lo") (Syntax: '"US Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor UL") (Syntax: '"US Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor De") (Syntax: '"US Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor Si") (Syntax: '"US Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor [Do]") (Syntax: '"US Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor St") (Syntax: '"US Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor Ob") (Syntax: '"US Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Xor Tc") (Syntax: '"US Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor BoFalse") (Syntax: '"[In] Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor BoTrue") (Syntax: '"[In] Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor SB") (Syntax: '"[In] Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor By") (Syntax: '"[In] Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor Sh") (Syntax: '"[In] Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor US") (Syntax: '"[In] Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor [In]") (Syntax: '"[In] Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor UI") (Syntax: '"[In] Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor Lo") (Syntax: '"[In] Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor UL") (Syntax: '"[In] Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor De") (Syntax: '"[In] Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor Si") (Syntax: '"[In] Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor [Do]") (Syntax: '"[In] Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor St") (Syntax: '"[In] Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor Ob") (Syntax: '"[In] Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor Tc") (Syntax: '"[In] Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor BoFalse") (Syntax: '"UI Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor BoTrue") (Syntax: '"UI Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor SB") (Syntax: '"UI Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor By") (Syntax: '"UI Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Xor By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor Sh") (Syntax: '"UI Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor US") (Syntax: '"UI Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Xor US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor [In]") (Syntax: '"UI Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor UI") (Syntax: '"UI Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Xor UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor Lo") (Syntax: '"UI Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor UL") (Syntax: '"UI Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor De") (Syntax: '"UI Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor Si") (Syntax: '"UI Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor [Do]") (Syntax: '"UI Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor St") (Syntax: '"UI Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor Ob") (Syntax: '"UI Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Xor Tc") (Syntax: '"UI Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor BoFalse") (Syntax: '"Lo Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor BoTrue") (Syntax: '"Lo Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor SB") (Syntax: '"Lo Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor By") (Syntax: '"Lo Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor Sh") (Syntax: '"Lo Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor US") (Syntax: '"Lo Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor [In]") (Syntax: '"Lo Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor UI") (Syntax: '"Lo Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor Lo") (Syntax: '"Lo Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor UL") (Syntax: '"Lo Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor UL') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor De") (Syntax: '"Lo Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor De') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor Si") (Syntax: '"Lo Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor Si') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor [Do]") (Syntax: '"Lo Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor [Do]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor St") (Syntax: '"Lo Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor St') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor Ob") (Syntax: '"Lo Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Xor Tc") (Syntax: '"Lo Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Xor Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor BoFalse") (Syntax: '"UL Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor BoTrue") (Syntax: '"UL Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor SB") (Syntax: '"UL Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor By") (Syntax: '"UL Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Xor By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor Sh") (Syntax: '"UL Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor US") (Syntax: '"UL Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Xor US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor [In]") (Syntax: '"UL Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor UI") (Syntax: '"UL Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Xor UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor Lo") (Syntax: '"UL Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor UL") (Syntax: '"UL Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Xor UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor De") (Syntax: '"UL Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor Si") (Syntax: '"UL Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor [Do]") (Syntax: '"UL Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor St") (Syntax: '"UL Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor Ob") (Syntax: '"UL Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Xor Tc") (Syntax: '"UL Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor BoFalse") (Syntax: '"De Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor BoTrue") (Syntax: '"De Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor SB") (Syntax: '"De Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor By") (Syntax: '"De Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor Sh") (Syntax: '"De Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor US") (Syntax: '"De Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor [In]") (Syntax: '"De Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor UI") (Syntax: '"De Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor Lo") (Syntax: '"De Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor UL") (Syntax: '"De Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor De") (Syntax: '"De Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor Si") (Syntax: '"De Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor [Do]") (Syntax: '"De Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor St") (Syntax: '"De Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor Ob") (Syntax: '"De Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Xor Tc") (Syntax: '"De Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor BoFalse") (Syntax: '"Si Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor BoTrue") (Syntax: '"Si Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor SB") (Syntax: '"Si Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor By") (Syntax: '"Si Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor Sh") (Syntax: '"Si Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor US") (Syntax: '"Si Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor [In]") (Syntax: '"Si Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor UI") (Syntax: '"Si Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor Lo") (Syntax: '"Si Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor UL") (Syntax: '"Si Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor De") (Syntax: '"Si Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor Si") (Syntax: '"Si Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor [Do]") (Syntax: '"Si Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor St") (Syntax: '"Si Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor Ob") (Syntax: '"Si Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Xor Tc") (Syntax: '"Si Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor BoFalse") (Syntax: '"[Do] Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor BoTrue") (Syntax: '"[Do] Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor SB") (Syntax: '"[Do] Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor By") (Syntax: '"[Do] Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor Sh") (Syntax: '"[Do] Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor US") (Syntax: '"[Do] Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor [In]") (Syntax: '"[Do] Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor UI") (Syntax: '"[Do] Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor Lo") (Syntax: '"[Do] Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor UL") (Syntax: '"[Do] Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor De") (Syntax: '"[Do] Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor Si") (Syntax: '"[Do] Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor [Do]") (Syntax: '"[Do] Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor St") (Syntax: '"[Do] Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor Ob") (Syntax: '"[Do] Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Xor Tc") (Syntax: '"[Do] Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor BoFalse") (Syntax: '"St Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor BoTrue") (Syntax: '"St Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor SB") (Syntax: '"St Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor By") (Syntax: '"St Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor Sh") (Syntax: '"St Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor US") (Syntax: '"St Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor [In]") (Syntax: '"St Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor UI") (Syntax: '"St Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor Lo") (Syntax: '"St Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor UL") (Syntax: '"St Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor De") (Syntax: '"St Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor Si") (Syntax: '"St Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor [Do]") (Syntax: '"St Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor St") (Syntax: '"St Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor Ob") (Syntax: '"St Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor Tc") (Syntax: '"St Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor BoFalse") (Syntax: '"Ob Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor BoTrue") (Syntax: '"Ob Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor SB") (Syntax: '"Ob Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor By") (Syntax: '"Ob Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor Sh") (Syntax: '"Ob Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor US") (Syntax: '"Ob Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor [In]") (Syntax: '"Ob Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor UI") (Syntax: '"Ob Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor Lo") (Syntax: '"Ob Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor UL") (Syntax: '"Ob Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor De") (Syntax: '"Ob Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor Si") (Syntax: '"Ob Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor [Do]") (Syntax: '"Ob Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor St") (Syntax: '"Ob Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor Ob") (Syntax: '"Ob Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Xor Tc") (Syntax: '"Ob Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Xor Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor BoFalse") (Syntax: '"Tc Xor BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Xor BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Xor BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Xor BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor BoTrue") (Syntax: '"Tc Xor BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Xor BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor SB") (Syntax: '"Tc Xor SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor SB') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Xor SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor By") (Syntax: '"Tc Xor By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor By') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Xor By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor Sh") (Syntax: '"Tc Xor Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor Sh') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Xor Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor US") (Syntax: '"Tc Xor US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor US') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Xor US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor [In]") (Syntax: '"Tc Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor UI") (Syntax: '"Tc Xor UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor UI') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Xor UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor Lo") (Syntax: '"Tc Xor Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor Lo') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Xor Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor UL") (Syntax: '"Tc Xor UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor UL') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Xor UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor De") (Syntax: '"Tc Xor De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor De') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Xor De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor Si") (Syntax: '"Tc Xor Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor Si') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Xor Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c Xor [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c Xor [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor [Do]") (Syntax: '"Tc Xor [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Xor [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor St") (Syntax: '"Tc Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor Ob") (Syntax: '"Tc Xor Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor Ob') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc Xor Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Xor Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.TypeCode)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Xor Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Xor Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Xor Tc") (Syntax: '"Tc Xor Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Xor Tc') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.TypeCode) (Syntax: 'Tc Xor Tc') - Left: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or BoFalse") (Syntax: '"BoFalse Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Or BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or BoTrue") (Syntax: '"BoFalse Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Or BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or SB") (Syntax: '"BoFalse Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or By") (Syntax: '"BoFalse Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or Sh") (Syntax: '"BoFalse Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or US") (Syntax: '"BoFalse Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or [In]") (Syntax: '"BoFalse Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or UI") (Syntax: '"BoFalse Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or Lo") (Syntax: '"BoFalse Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or UL") (Syntax: '"BoFalse Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or De") (Syntax: '"BoFalse Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or Si") (Syntax: '"BoFalse Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or [Do]") (Syntax: '"BoFalse Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or St") (Syntax: '"BoFalse Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Or St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or Ob") (Syntax: '"BoFalse Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... alse Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... alse Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Or Tc") (Syntax: '"BoFalse Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or BoFalse") (Syntax: '"BoTrue Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Or BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or BoTrue") (Syntax: '"BoTrue Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Or BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or SB") (Syntax: '"BoTrue Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or By") (Syntax: '"BoTrue Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or Sh") (Syntax: '"BoTrue Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or US") (Syntax: '"BoTrue Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or [In]") (Syntax: '"BoTrue Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or UI") (Syntax: '"BoTrue Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or Lo") (Syntax: '"BoTrue Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or UL") (Syntax: '"BoTrue Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or De") (Syntax: '"BoTrue Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or Si") (Syntax: '"BoTrue Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or [Do]") (Syntax: '"BoTrue Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or St") (Syntax: '"BoTrue Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Or St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or Ob") (Syntax: '"BoTrue Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... True Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... True Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Or Tc") (Syntax: '"BoTrue Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or BoFalse") (Syntax: '"SB Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Or BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or BoTrue") (Syntax: '"SB Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Or BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or SB") (Syntax: '"SB Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB Or SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or By") (Syntax: '"SB Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or Sh") (Syntax: '"SB Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or US") (Syntax: '"SB Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or [In]") (Syntax: '"SB Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or UI") (Syntax: '"SB Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or Lo") (Syntax: '"SB Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or UL") (Syntax: '"SB Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or De") (Syntax: '"SB Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or Si") (Syntax: '"SB Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or [Do]") (Syntax: '"SB Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or St") (Syntax: '"SB Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or Ob") (Syntax: '"SB Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , SB Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , SB Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Or Tc") (Syntax: '"SB Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or BoFalse") (Syntax: '"By Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or BoTrue") (Syntax: '"By Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or SB") (Syntax: '"By Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or By") (Syntax: '"By Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By Or By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or Sh") (Syntax: '"By Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or US") (Syntax: '"By Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or [In]") (Syntax: '"By Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or UI") (Syntax: '"By Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or Lo") (Syntax: '"By Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or UL") (Syntax: '"By Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or De") (Syntax: '"By Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or Si") (Syntax: '"By Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or [Do]") (Syntax: '"By Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or St") (Syntax: '"By Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or Ob") (Syntax: '"By Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , By Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , By Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Or Tc") (Syntax: '"By Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or BoFalse") (Syntax: '"Sh Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Or BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or BoTrue") (Syntax: '"Sh Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Or BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or SB") (Syntax: '"Sh Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Or SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or By") (Syntax: '"Sh Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Or By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or Sh") (Syntax: '"Sh Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh Or Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or US") (Syntax: '"Sh Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or [In]") (Syntax: '"Sh Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or UI") (Syntax: '"Sh Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or Lo") (Syntax: '"Sh Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or UL") (Syntax: '"Sh Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or De") (Syntax: '"Sh Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or Si") (Syntax: '"Sh Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or [Do]") (Syntax: '"Sh Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or St") (Syntax: '"Sh Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or Ob") (Syntax: '"Sh Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Sh Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Sh Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Or Tc") (Syntax: '"Sh Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or BoFalse") (Syntax: '"US Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or BoTrue") (Syntax: '"US Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or SB") (Syntax: '"US Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or By") (Syntax: '"US Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US Or By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or Sh") (Syntax: '"US Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or US") (Syntax: '"US Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US Or US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or [In]") (Syntax: '"US Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or UI") (Syntax: '"US Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or Lo") (Syntax: '"US Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or UL") (Syntax: '"US Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or De") (Syntax: '"US Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or Si") (Syntax: '"US Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or [Do]") (Syntax: '"US Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or St") (Syntax: '"US Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or Ob") (Syntax: '"US Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , US Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , US Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Or Tc") (Syntax: '"US Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or BoFalse") (Syntax: '"[In] Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or BoTrue") (Syntax: '"[In] Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or SB") (Syntax: '"[In] Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or By") (Syntax: '"[In] Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or Sh") (Syntax: '"[In] Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or US") (Syntax: '"[In] Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or [In]") (Syntax: '"[In] Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or UI") (Syntax: '"[In] Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or Lo") (Syntax: '"[In] Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or UL") (Syntax: '"[In] Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or De") (Syntax: '"[In] Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or Si") (Syntax: '"[In] Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or [Do]") (Syntax: '"[In] Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or St") (Syntax: '"[In] Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or Ob") (Syntax: '"[In] Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or Tc") (Syntax: '"[In] Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or BoFalse") (Syntax: '"UI Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or BoTrue") (Syntax: '"UI Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or SB") (Syntax: '"UI Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or By") (Syntax: '"UI Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Or By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or Sh") (Syntax: '"UI Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or US") (Syntax: '"UI Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Or US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or [In]") (Syntax: '"UI Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or UI") (Syntax: '"UI Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI Or UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or Lo") (Syntax: '"UI Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or UL") (Syntax: '"UI Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or De") (Syntax: '"UI Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or Si") (Syntax: '"UI Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or [Do]") (Syntax: '"UI Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or St") (Syntax: '"UI Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or Ob") (Syntax: '"UI Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UI Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UI Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Or Tc") (Syntax: '"UI Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or BoFalse") (Syntax: '"Lo Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or BoTrue") (Syntax: '"Lo Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or SB") (Syntax: '"Lo Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or By") (Syntax: '"Lo Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or Sh") (Syntax: '"Lo Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or US") (Syntax: '"Lo Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or [In]") (Syntax: '"Lo Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or UI") (Syntax: '"Lo Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or Lo") (Syntax: '"Lo Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or UL") (Syntax: '"Lo Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or UL') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or De") (Syntax: '"Lo Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or De') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or Si") (Syntax: '"Lo Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or Si') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or [Do]") (Syntax: '"Lo Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or [Do]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or St") (Syntax: '"Lo Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or St') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or Ob") (Syntax: '"Lo Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Lo Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Lo Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Or Tc") (Syntax: '"Lo Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo Or Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or BoFalse") (Syntax: '"UL Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or BoTrue") (Syntax: '"UL Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or SB") (Syntax: '"UL Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or By") (Syntax: '"UL Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Or By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or Sh") (Syntax: '"UL Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or US") (Syntax: '"UL Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Or US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or [In]") (Syntax: '"UL Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or UI") (Syntax: '"UL Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Or UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or Lo") (Syntax: '"UL Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or UL") (Syntax: '"UL Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL Or UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or De") (Syntax: '"UL Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or Si") (Syntax: '"UL Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or [Do]") (Syntax: '"UL Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or St") (Syntax: '"UL Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or Ob") (Syntax: '"UL Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , UL Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , UL Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Or Tc") (Syntax: '"UL Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or BoFalse") (Syntax: '"De Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or BoTrue") (Syntax: '"De Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or SB") (Syntax: '"De Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or By") (Syntax: '"De Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or Sh") (Syntax: '"De Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or US") (Syntax: '"De Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or [In]") (Syntax: '"De Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or UI") (Syntax: '"De Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or Lo") (Syntax: '"De Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or UL") (Syntax: '"De Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or De") (Syntax: '"De Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or Si") (Syntax: '"De Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or [Do]") (Syntax: '"De Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or St") (Syntax: '"De Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or Ob") (Syntax: '"De Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , De Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , De Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Or Tc") (Syntax: '"De Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or BoFalse") (Syntax: '"Si Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or BoTrue") (Syntax: '"Si Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or SB") (Syntax: '"Si Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or By") (Syntax: '"Si Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or Sh") (Syntax: '"Si Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or US") (Syntax: '"Si Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or [In]") (Syntax: '"Si Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or UI") (Syntax: '"Si Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or Lo") (Syntax: '"Si Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or UL") (Syntax: '"Si Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or De") (Syntax: '"Si Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or Si") (Syntax: '"Si Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or [Do]") (Syntax: '"Si Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or St") (Syntax: '"Si Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or Ob") (Syntax: '"Si Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Si Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Si Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Or Tc") (Syntax: '"Si Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or BoFalse") (Syntax: '"[Do] Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or BoTrue") (Syntax: '"[Do] Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or SB") (Syntax: '"[Do] Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or By") (Syntax: '"[Do] Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or Sh") (Syntax: '"[Do] Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or US") (Syntax: '"[Do] Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or [In]") (Syntax: '"[Do] Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or UI") (Syntax: '"[Do] Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or Lo") (Syntax: '"[Do] Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or UL") (Syntax: '"[Do] Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or De") (Syntax: '"[Do] Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or Si") (Syntax: '"[Do] Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or [Do]") (Syntax: '"[Do] Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or St") (Syntax: '"[Do] Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or Ob") (Syntax: '"[Do] Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Or Tc") (Syntax: '"[Do] Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or BoFalse") (Syntax: '"St Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or BoTrue") (Syntax: '"St Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or SB") (Syntax: '"St Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or By") (Syntax: '"St Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or Sh") (Syntax: '"St Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or US") (Syntax: '"St Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or [In]") (Syntax: '"St Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or UI") (Syntax: '"St Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or Lo") (Syntax: '"St Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or UL") (Syntax: '"St Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or De") (Syntax: '"St Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or Si") (Syntax: '"St Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or [Do]") (Syntax: '"St Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or St") (Syntax: '"St Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or Ob") (Syntax: '"St Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or Tc") (Syntax: '"St Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or BoFalse") (Syntax: '"Ob Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or BoTrue") (Syntax: '"Ob Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or SB") (Syntax: '"Ob Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or By") (Syntax: '"Ob Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or Sh") (Syntax: '"Ob Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or US") (Syntax: '"Ob Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or [In]") (Syntax: '"Ob Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or UI") (Syntax: '"Ob Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or Lo") (Syntax: '"Ob Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or UL") (Syntax: '"Ob Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or De") (Syntax: '"Ob Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or Si") (Syntax: '"Ob Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or [Do]") (Syntax: '"Ob Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or St") (Syntax: '"Ob Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or Ob") (Syntax: '"Ob Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Or Tc") (Syntax: '"Ob Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Or Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or BoFalse") (Syntax: '"Tc Or BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Or BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or BoTrue") (Syntax: '"Tc Or BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Or BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or SB") (Syntax: '"Tc Or SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or SB') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Or SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or By") (Syntax: '"Tc Or By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or By') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Or By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or Sh") (Syntax: '"Tc Or Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Or Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or US") (Syntax: '"Tc Or US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or US') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Or US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or [In]") (Syntax: '"Tc Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or UI") (Syntax: '"Tc Or UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or UI') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Or UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or Lo") (Syntax: '"Tc Or Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Or Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or UL") (Syntax: '"Tc Or UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or UL') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Or UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or De") (Syntax: '"Tc Or De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or De') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Or De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or Si") (Syntax: '"Tc Or Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or Si') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Or Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Or [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Or [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or [Do]") (Syntax: '"Tc Or [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Or [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or St") (Syntax: '"Tc Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or Ob") (Syntax: '"Tc Or Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc Or Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Tc Or Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.TypeCode)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Tc Or Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Or Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Or Tc") (Syntax: '"Tc Or Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Or Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.TypeCode) (Syntax: 'Tc Or Tc') - Left: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And BoFalse") (Syntax: '"BoFalse And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse And BoFalse') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And BoTrue") (Syntax: '"BoFalse And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse And BoTrue') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And SB") (Syntax: '"BoFalse And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoFalse And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And By") (Syntax: '"BoFalse And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And Sh") (Syntax: '"BoFalse And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoFalse And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And US") (Syntax: '"BoFalse And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And [In]") (Syntax: '"BoFalse And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And UI") (Syntax: '"BoFalse And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And Lo") (Syntax: '"BoFalse And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And UL") (Syntax: '"BoFalse And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And De") (Syntax: '"BoFalse And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And Si") (Syntax: '"BoFalse And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And [Do]") (Syntax: '"BoFalse And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoFalse And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And St") (Syntax: '"BoFalse And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse And St') - Left: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And Ob") (Syntax: '"BoFalse And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoFalse And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lse And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lse And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse And Tc") (Syntax: '"BoFalse And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoFalse And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And BoFalse") (Syntax: '"BoTrue And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue And BoFalse') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And BoTrue") (Syntax: '"BoTrue And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue And BoTrue') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And SB") (Syntax: '"BoTrue And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'BoTrue And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And By") (Syntax: '"BoTrue And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And Sh") (Syntax: '"BoTrue And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'BoTrue And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And US") (Syntax: '"BoTrue And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And [In]") (Syntax: '"BoTrue And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And UI") (Syntax: '"BoTrue And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And Lo") (Syntax: '"BoTrue And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And UL") (Syntax: '"BoTrue And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And De") (Syntax: '"BoTrue And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And Si") (Syntax: '"BoTrue And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And [Do]") (Syntax: '"BoTrue And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'BoTrue And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And St") (Syntax: '"BoTrue And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue And St') - Left: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And Ob") (Syntax: '"BoTrue And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'BoTrue And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rue And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rue And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue And Tc") (Syntax: '"BoTrue And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'BoTrue And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And BoFalse") (Syntax: '"SB And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB And BoFalse') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And BoTrue") (Syntax: '"SB And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB And BoTrue') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.SByte) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.SByte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And SB") (Syntax: '"SB And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.SByte) (Syntax: 'SB And SB') - Left: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And By") (Syntax: '"SB And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And Sh") (Syntax: '"SB And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'SB And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And US") (Syntax: '"SB And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And [In]") (Syntax: '"SB And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And UI") (Syntax: '"SB And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And Lo") (Syntax: '"SB And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And UL") (Syntax: '"SB And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And De") (Syntax: '"SB And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And Si") (Syntax: '"SB And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... B And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... B And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And [Do]") (Syntax: '"SB And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And St") (Syntax: '"SB And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'SB And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And Ob") (Syntax: '"SB And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'SB And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB And Tc") (Syntax: '"SB And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'SB And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And BoFalse") (Syntax: '"By And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And BoTrue") (Syntax: '"By And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And SB") (Syntax: '"By And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And By") (Syntax: '"By And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By And By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And Sh") (Syntax: '"By And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'By And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And US") (Syntax: '"By And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And [In]") (Syntax: '"By And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And UI") (Syntax: '"By And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And Lo") (Syntax: '"By And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And UL") (Syntax: '"By And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And De") (Syntax: '"By And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And Si") (Syntax: '"By And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And [Do]") (Syntax: '"By And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And St") (Syntax: '"By And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'By And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And Ob") (Syntax: '"By And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'By And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By And Tc") (Syntax: '"By And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'By And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And BoFalse") (Syntax: '"Sh And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh And BoFalse') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And BoTrue") (Syntax: '"Sh And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh And BoTrue') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And SB") (Syntax: '"Sh And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh And SB') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And By") (Syntax: '"Sh And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh And By') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And Sh") (Syntax: '"Sh And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int16) (Syntax: 'Sh And Sh') - Left: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And US") (Syntax: '"Sh And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And [In]") (Syntax: '"Sh And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And UI") (Syntax: '"Sh And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And Lo") (Syntax: '"Sh And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And UL") (Syntax: '"Sh And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And De") (Syntax: '"Sh And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And Si") (Syntax: '"Sh And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And [Do]") (Syntax: '"Sh And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And St") (Syntax: '"Sh And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Sh And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And Ob") (Syntax: '"Sh And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Sh And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh And Tc") (Syntax: '"Sh And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Sh And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And BoFalse") (Syntax: '"US And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And BoTrue") (Syntax: '"US And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And SB") (Syntax: '"US And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And By") (Syntax: '"US And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US And By') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And Sh") (Syntax: '"US And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And US") (Syntax: '"US And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'US And US') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And [In]") (Syntax: '"US And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And UI") (Syntax: '"US And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And Lo") (Syntax: '"US And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And UL") (Syntax: '"US And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And De") (Syntax: '"US And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And Si") (Syntax: '"US And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... S And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... S And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And [Do]") (Syntax: '"US And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And St") (Syntax: '"US And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'US And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And Ob") (Syntax: '"US And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'US And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US And Tc") (Syntax: '"US And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'US And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And BoFalse") (Syntax: '"[In] And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And BoFalse') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And BoTrue") (Syntax: '"[In] And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And BoTrue') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And SB") (Syntax: '"[In] And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And SB') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And By") (Syntax: '"[In] And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And By') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And Sh") (Syntax: '"[In] And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And Sh') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And US") (Syntax: '"[In] And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And US') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And [In]") (Syntax: '"[In] And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And [In]') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And UI") (Syntax: '"[In] And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And Lo") (Syntax: '"[In] And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And UL") (Syntax: '"[In] And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And De") (Syntax: '"[In] And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And Si") (Syntax: '"[In] And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And [Do]") (Syntax: '"[In] And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And St") (Syntax: '"[In] And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[In] And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And Ob") (Syntax: '"[In] And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[In] And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... In] And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... In] And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And Tc") (Syntax: '"[In] And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And Tc') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And BoFalse") (Syntax: '"UI And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And BoTrue") (Syntax: '"UI And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And SB") (Syntax: '"UI And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And By") (Syntax: '"UI And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI And By') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And Sh") (Syntax: '"UI And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And US") (Syntax: '"UI And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI And US') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And [In]") (Syntax: '"UI And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And UI") (Syntax: '"UI And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'UI And UI') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And Lo") (Syntax: '"UI And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And UL") (Syntax: '"UI And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And De") (Syntax: '"UI And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And Si") (Syntax: '"UI And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... I And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... I And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And [Do]") (Syntax: '"UI And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And St") (Syntax: '"UI And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And Ob") (Syntax: '"UI And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UI And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI And Tc") (Syntax: '"UI And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UI And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And BoFalse") (Syntax: '"Lo And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And BoFalse') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And BoTrue") (Syntax: '"Lo And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And BoTrue') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And SB") (Syntax: '"Lo And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And SB') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And By") (Syntax: '"Lo And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And By') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And Sh") (Syntax: '"Lo And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And Sh') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And US") (Syntax: '"Lo And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And US') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And [In]") (Syntax: '"Lo And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And [In]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And UI") (Syntax: '"Lo And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And UI') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And Lo") (Syntax: '"Lo And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And Lo') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And UL") (Syntax: '"Lo And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And UL') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And De") (Syntax: '"Lo And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And De') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And Si") (Syntax: '"Lo And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And Si') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And [Do]") (Syntax: '"Lo And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And [Do]') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And St") (Syntax: '"Lo And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And St') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And Ob") (Syntax: '"Lo And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Lo And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo And Tc") (Syntax: '"Lo And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Lo And Tc') - Left: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And BoFalse") (Syntax: '"UL And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And BoTrue") (Syntax: '"UL And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And SB") (Syntax: '"UL And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And By") (Syntax: '"UL And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL And By') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And Sh") (Syntax: '"UL And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And US") (Syntax: '"UL And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL And US') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And [In]") (Syntax: '"UL And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And UI") (Syntax: '"UL And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL And UI') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And Lo") (Syntax: '"UL And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And UL") (Syntax: '"UL And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UL And UL') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And De") (Syntax: '"UL And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And Si") (Syntax: '"UL And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... L And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... L And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And [Do]") (Syntax: '"UL And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And St") (Syntax: '"UL And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And Ob") (Syntax: '"UL And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'UL And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL And Tc") (Syntax: '"UL And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'UL And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And BoFalse") (Syntax: '"De And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And BoTrue") (Syntax: '"De And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And SB") (Syntax: '"De And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And By") (Syntax: '"De And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And Sh") (Syntax: '"De And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And US") (Syntax: '"De And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And [In]") (Syntax: '"De And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And UI") (Syntax: '"De And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And Lo") (Syntax: '"De And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And UL") (Syntax: '"De And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And De") (Syntax: '"De And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And Si") (Syntax: '"De And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... e And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... e And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And [Do]") (Syntax: '"De And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And St") (Syntax: '"De And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And Ob") (Syntax: '"De And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'De And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De And Tc") (Syntax: '"De And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'De And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And BoFalse") (Syntax: '"Si And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And BoTrue") (Syntax: '"Si And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And SB") (Syntax: '"Si And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And By") (Syntax: '"Si And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And Sh") (Syntax: '"Si And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And US") (Syntax: '"Si And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And [In]") (Syntax: '"Si And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And UI") (Syntax: '"Si And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And Lo") (Syntax: '"Si And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And UL") (Syntax: '"Si And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And De") (Syntax: '"Si And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And Si") (Syntax: '"Si And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... i And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... i And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And [Do]") (Syntax: '"Si And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And St") (Syntax: '"Si And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And Ob") (Syntax: '"Si And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Si And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si And Tc") (Syntax: '"Si And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Si And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And BoFalse") (Syntax: '"[Do] And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And BoTrue") (Syntax: '"[Do] And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And SB") (Syntax: '"[Do] And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And By") (Syntax: '"[Do] And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And Sh") (Syntax: '"[Do] And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And US") (Syntax: '"[Do] And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And [In]") (Syntax: '"[Do] And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And UI") (Syntax: '"[Do] And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And Lo") (Syntax: '"[Do] And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And UL") (Syntax: '"[Do] And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And De") (Syntax: '"[Do] And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And Si") (Syntax: '"[Do] And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ] And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ] And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And [Do]") (Syntax: '"[Do] And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And St") (Syntax: '"[Do] And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And Ob") (Syntax: '"[Do] And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: '[Do] And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Do] And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Do] And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] And Tc") (Syntax: '"[Do] And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: '[Do] And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And BoFalse") (Syntax: '"St And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And BoTrue") (Syntax: '"St And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And SB") (Syntax: '"St And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And By") (Syntax: '"St And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And Sh") (Syntax: '"St And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And US") (Syntax: '"St And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And [In]") (Syntax: '"St And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And UI") (Syntax: '"St And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And Lo") (Syntax: '"St And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And UL") (Syntax: '"St And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And De") (Syntax: '"St And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And Si") (Syntax: '"St And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... t And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... t And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And [Do]") (Syntax: '"St And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And St") (Syntax: '"St And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And Ob") (Syntax: '"St And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'St And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And Tc") (Syntax: '"St And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And BoFalse") (Syntax: '"Ob And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And BoFalse') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And BoTrue") (Syntax: '"Ob And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And BoTrue') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And SB") (Syntax: '"Ob And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And SB') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And By") (Syntax: '"Ob And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And By') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And Sh") (Syntax: '"Ob And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And Sh') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And US") (Syntax: '"Ob And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And US') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And [In]") (Syntax: '"Ob And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And [In]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And UI") (Syntax: '"Ob And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And UI') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And Lo") (Syntax: '"Ob And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And Lo') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And UL") (Syntax: '"Ob And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And UL') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And De") (Syntax: '"Ob And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And De') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And Si") (Syntax: '"Ob And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And Si') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... b And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... b And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And [Do]") (Syntax: '"Ob And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And [Do]') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And St") (Syntax: '"Ob And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And St') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And Ob") (Syntax: '"Ob And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And Ob') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob And Tc") (Syntax: '"Ob And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob And Tc') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And BoFalse") (Syntax: '"Tc And BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc And BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... And BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... And BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And BoTrue") (Syntax: '"Tc And BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc And BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And SB") (Syntax: '"Tc And SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And SB') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc And SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And By") (Syntax: '"Tc And By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And By') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc And By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And Sh") (Syntax: '"Tc And Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And Sh') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc And Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And US") (Syntax: '"Tc And US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And US') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc And US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And [In]") (Syntax: '"Tc And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Tc And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And UI") (Syntax: '"Tc And UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And UI') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc And UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And Lo") (Syntax: '"Tc And Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And Lo') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc And Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And UL") (Syntax: '"Tc And UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And UL') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc And UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And De") (Syntax: '"Tc And De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And De') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc And De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And Si") (Syntax: '"Tc And Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And Si') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc And Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... c And [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... c And [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And [Do]") (Syntax: '"Tc And [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc And [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And St") (Syntax: '"Tc And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Tc And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And Ob") (Syntax: '"Tc And Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And Ob') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Tc And Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc And Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.TypeCode)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc And Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc And Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc And Tc") (Syntax: '"Tc And Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc And Tc') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.TypeCode) (Syntax: 'Tc And Tc') - Left: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch + St") (Syntax: '"Ch + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch + St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch + Ob") (Syntax: '"Ch + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch + Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch + Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch + Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch + Ch") (Syntax: '"Ch + Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch + Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch + Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch + ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch + ChArray") (Syntax: '"Ch + ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch + ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch + ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray + St") (Syntax: '"ChArray + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray + St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array + Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array + Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray + Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray + Ob") (Syntax: '"ChArray + Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray + Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray + Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array + Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array + Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray + Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray + Ch") (Syntax: '"ChArray + Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray + Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray + Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray + ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray + ChArray") (Syntax: '"ChArray + ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray + ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray + ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St + Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St + Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + Ch") (Syntax: '"St + Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St + Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + ChArray") (Syntax: '"St + ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St + ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob + Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob + Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + Ch") (Syntax: '"Ob + Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob + ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob + ChArray") (Syntax: '"Ob + ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob + ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob + ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob OrElse ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob OrElse ChArray") (Syntax: '"Ob OrElse ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob OrElse ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob OrElse ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & BoFalse") (Syntax: '"Ch & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... h & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... h & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & BoTrue") (Syntax: '"Ch & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & SB") (Syntax: '"Ch & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & By") (Syntax: '"Ch & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & Sh") (Syntax: '"Ch & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & US") (Syntax: '"Ch & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & [In]") (Syntax: '"Ch & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & UI") (Syntax: '"Ch & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & Lo") (Syntax: '"Ch & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & UL") (Syntax: '"Ch & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & De") (Syntax: '"Ch & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & Si") (Syntax: '"Ch & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & [Do]") (Syntax: '"Ch & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & St") (Syntax: '"Ch & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & Ob") (Syntax: '"Ch & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & Tc") (Syntax: '"Ch & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & Ch") (Syntax: '"Ch & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch & ChArray") (Syntax: '"Ch & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Ch & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & BoFalse") (Syntax: '"ChArray & BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & BoFalse') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... y & BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... y & BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & BoTrue") (Syntax: '"ChArray & BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & BoTrue') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & SB") (Syntax: '"ChArray & SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & SB') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & By") (Syntax: '"ChArray & By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & By') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & Sh") (Syntax: '"ChArray & Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & Sh') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & US") (Syntax: '"ChArray & US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & US') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ray & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ray & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & [In]") (Syntax: '"ChArray & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & [In]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & UI") (Syntax: '"ChArray & UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & UI') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & Lo") (Syntax: '"ChArray & Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & Lo') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & UL") (Syntax: '"ChArray & UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & UL') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & De") (Syntax: '"ChArray & De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & De') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & Si") (Syntax: '"ChArray & Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & Si') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ray & [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ray & [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & [Do]") (Syntax: '"ChArray & [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & [Do]') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & St") (Syntax: '"ChArray & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & St') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & Ob") (Syntax: '"ChArray & Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray & Ob') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & Tc") (Syntax: '"ChArray & Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & Tc') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & Ch") (Syntax: '"ChArray & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & ChArray") (Syntax: '"ChArray & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... False & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... False & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & Ch") (Syntax: '"BoFalse & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse & ChArray") (Syntax: '"BoFalse & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoFalse & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... oTrue & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... oTrue & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & Ch") (Syntax: '"BoTrue & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue & ChArray") (Syntax: '"BoTrue & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'BoTrue & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", SB & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", SB & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & Ch") (Syntax: '"SB & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB & ChArray") (Syntax: '"SB & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'SB & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & Ch") (Syntax: '"By & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By & ChArray") (Syntax: '"By & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'By & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Sh & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Sh & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & Ch") (Syntax: '"Sh & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh & ChArray") (Syntax: '"Sh & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Sh & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & Ch") (Syntax: '"US & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US & ChArray") (Syntax: '"US & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'US & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [In] & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [In] & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & Ch") (Syntax: '"[In] & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & ChArray") (Syntax: '"[In] & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & Ch") (Syntax: '"UI & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI & ChArray") (Syntax: '"UI & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UI & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Lo & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Lo & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & Ch") (Syntax: '"Lo & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo & ChArray") (Syntax: '"Lo & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Lo & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UL & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UL & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & Ch") (Syntax: '"UL & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL & ChArray") (Syntax: '"UL & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'UL & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", De & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", De & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & Ch") (Syntax: '"De & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De & ChArray") (Syntax: '"De & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'De & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Si & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Si & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & Ch") (Syntax: '"Si & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si & ChArray") (Syntax: '"Si & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Si & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... [Do] & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... [Do] & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & Ch") (Syntax: '"[Do] & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] & ChArray") (Syntax: '"[Do] & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[Do] & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & Ch") (Syntax: '"St & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & ChArray") (Syntax: '"St & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & Ch") (Syntax: '"Ob & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob & ChArray") (Syntax: '"Ob & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob & ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Tc & Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Tc & Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & Ch") (Syntax: '"Tc & Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & Ch') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc & ChArray") (Syntax: '"Tc & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Tc & ChArray') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like BoFalse") (Syntax: '"Da Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like BoTrue") (Syntax: '"Da Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like SB") (Syntax: '"Da Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like By") (Syntax: '"Da Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like Sh") (Syntax: '"Da Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like US") (Syntax: '"Da Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like [In]") (Syntax: '"Da Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like UI") (Syntax: '"Da Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like Lo") (Syntax: '"Da Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like UL") (Syntax: '"Da Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like De") (Syntax: '"Da Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like Si") (Syntax: '"Da Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like [Do]") (Syntax: '"Da Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like St") (Syntax: '"Da Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like Ob") (Syntax: '"Da Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Da Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like Tc") (Syntax: '"Da Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like Da") (Syntax: '"Da Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Da Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Da Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like Ch") (Syntax: '"Da Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da Like ChArray") (Syntax: '"Da Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like BoFalse") (Syntax: '"Ch Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like BoTrue") (Syntax: '"Ch Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like SB") (Syntax: '"Ch Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like By") (Syntax: '"Ch Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like Sh") (Syntax: '"Ch Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like US") (Syntax: '"Ch Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like [In]") (Syntax: '"Ch Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like UI") (Syntax: '"Ch Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like Lo") (Syntax: '"Ch Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like UL") (Syntax: '"Ch Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like De") (Syntax: '"Ch Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like Si") (Syntax: '"Ch Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like [Do]") (Syntax: '"Ch Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like St") (Syntax: '"Ch Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like Ob") (Syntax: '"Ch Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like Tc") (Syntax: '"Ch Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like Da") (Syntax: '"Ch Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ch Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ch Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like Ch") (Syntax: '"Ch Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch Like ChArray") (Syntax: '"Ch Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke BoFalse)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke BoFalse)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like BoFalse"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like BoFalse") (Syntax: '"ChArray Like BoFalse"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like BoFalse') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like BoFalse') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ike BoTrue)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ike BoTrue)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like BoTrue"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like BoTrue") (Syntax: '"ChArray Like BoTrue"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like BoTrue') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like BoTrue') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like SB)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like SB)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like SB"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like SB") (Syntax: '"ChArray Like SB"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like SB') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like SB') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like By") (Syntax: '"ChArray Like By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like By') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like By') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like Sh)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like Sh)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Sh"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Sh") (Syntax: '"ChArray Like Sh"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Sh') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like Sh') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like US") (Syntax: '"ChArray Like US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like US') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like [In]") (Syntax: '"ChArray Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like UI") (Syntax: '"ChArray Like UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like UI') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like Lo)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like Lo)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Lo"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Lo") (Syntax: '"ChArray Like Lo"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Lo') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like Lo') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like UL") (Syntax: '"ChArray Like UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like UL') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like De)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like De)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like De"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like De") (Syntax: '"ChArray Like De"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like De') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like De') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like Si)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like Si)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Si"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Si") (Syntax: '"ChArray Like Si"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Si') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like Si') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [Do])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [Do])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like [Do]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like [Do]") (Syntax: '"ChArray Like [Do]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like [Do]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like [Do]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like St") (Syntax: '"ChArray Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Ob") (Syntax: '"ChArray Like Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray Like Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like Tc)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like Tc)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Tc"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Tc") (Syntax: '"ChArray Like Tc"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Tc') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like Tc') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Da") (Syntax: '"ChArray Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ay Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ay Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Ch") (Syntax: '"ChArray Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like ChArray") (Syntax: '"ChArray Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like Da") (Syntax: '"BoFalse Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like Ch") (Syntax: '"BoFalse Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoFalse Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoFalse Like ChArray") (Syntax: '"BoFalse Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoFalse Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoFalse Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoFalse') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoFalse (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoFalse') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like Da") (Syntax: '"BoTrue Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ue Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ue Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like Ch") (Syntax: '"BoTrue Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"BoTrue Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "BoTrue Like ChArray") (Syntax: '"BoTrue Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'BoTrue Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'BoTrue Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'BoTrue') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: BoTrue (OperationKind.LocalReferenceExpression, Type: System.Boolean) (Syntax: 'BoTrue') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like Da") (Syntax: '"SB Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... SB Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... SB Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like Ch") (Syntax: '"SB Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"SB Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "SB Like ChArray") (Syntax: '"SB Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'SB Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'SB Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'SB') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: SB (OperationKind.LocalReferenceExpression, Type: System.SByte) (Syntax: 'SB') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like Da") (Syntax: '"By Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... By Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... By Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like Ch") (Syntax: '"By Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By Like ChArray") (Syntax: '"By Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'By Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like Da") (Syntax: '"Sh Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Sh Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Sh Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like Ch") (Syntax: '"Sh Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Sh Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Sh Like ChArray") (Syntax: '"Sh Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Sh Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Sh Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Sh') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Sh (OperationKind.LocalReferenceExpression, Type: System.Int16) (Syntax: 'Sh') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like Da") (Syntax: '"US Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... US Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... US Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like Ch") (Syntax: '"US Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US Like ChArray") (Syntax: '"US Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'US Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Da") (Syntax: '"[In] Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... n] Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... n] Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Ch") (Syntax: '"[In] Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like ChArray") (Syntax: '"[In] Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like Da") (Syntax: '"UI Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UI Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UI Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like Ch") (Syntax: '"UI Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI Like ChArray") (Syntax: '"UI Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UI Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like Da") (Syntax: '"Lo Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Lo Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Lo Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like Ch") (Syntax: '"Lo Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Lo Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Lo Like ChArray") (Syntax: '"Lo Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Lo Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Lo Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Lo') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Lo (OperationKind.LocalReferenceExpression, Type: System.Int64) (Syntax: 'Lo') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like Da") (Syntax: '"UL Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... UL Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... UL Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like Ch") (Syntax: '"UL Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UL Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UL Like ChArray") (Syntax: '"UL Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UL Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'UL Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'UL') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like Da") (Syntax: '"De Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... De Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... De Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like Ch") (Syntax: '"De Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"De Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "De Like ChArray") (Syntax: '"De Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'De Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'De Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'De') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: De (OperationKind.LocalReferenceExpression, Type: System.Decimal) (Syntax: 'De') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like Da") (Syntax: '"Si Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Si Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Si Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like Ch") (Syntax: '"Si Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Si Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Si Like ChArray") (Syntax: '"Si Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Si Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Si Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Si') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Si (OperationKind.LocalReferenceExpression, Type: System.Single) (Syntax: 'Si') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like Da") (Syntax: '"[Do] Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... o] Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... o] Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like Ch") (Syntax: '"[Do] Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[Do] Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[Do] Like ChArray") (Syntax: '"[Do] Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[Do] Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[Do] Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[Do]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Do (OperationKind.LocalReferenceExpression, Type: System.Double) (Syntax: '[Do]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Da") (Syntax: '"St Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like Da') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... St Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... St Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Ch") (Syntax: '"St Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like ChArray") (Syntax: '"St Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like Da") (Syntax: '"Ob Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like Da') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Ob Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Ob Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like Ch") (Syntax: '"Ob Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob Like ChArray") (Syntax: '"Ob Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob Like ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like Da") (Syntax: '"Tc Like Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like Da') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Tc Like Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Tc Like Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like Ch") (Syntax: '"Tc Like Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Tc Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Tc Like ChArray") (Syntax: '"Tc Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Tc Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Tc Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Tc') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Tc (OperationKind.LocalReferenceExpression, Type: System.TypeCode) (Syntax: 'Tc') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da = Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da = Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da = Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da = Da") (Syntax: '"Da = Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da = Da') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da = Da') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch = St") (Syntax: '"Ch = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch = Ob") (Syntax: '"Ch = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch = Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch = Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch = Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch = Ch") (Syntax: '"Ch = Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch = Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch = Ch') - Left: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch = ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch = ChArray") (Syntax: '"Ch = ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch = ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch = ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray = St") (Syntax: '"ChArray = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray = Ob") (Syntax: '"ChArray = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array = Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array = Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray = Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray = Ch") (Syntax: '"ChArray = Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray = Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray = Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray = ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray = ChArray") (Syntax: '"ChArray = ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray = ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray = ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Ch") (Syntax: '"St = Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = ChArray") (Syntax: '"St = ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = Ch") (Syntax: '"Ob = Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = Ch') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = ChArray") (Syntax: '"Ob = ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da <> Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da <> Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da <> Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da <> Da") (Syntax: '"Da <> Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da <> Da') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da <> Da') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <> St") (Syntax: '"Ch <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <> Ob") (Syntax: '"Ch <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch <> Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch <> Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <> Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <> Ch") (Syntax: '"Ch <> Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <> Ch') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch <> Ch') - Left: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <> ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <> ChArray") (Syntax: '"Ch <> ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <> ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch <> ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <> St") (Syntax: '"ChArray <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <> Ob") (Syntax: '"ChArray <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray <> Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray <> Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <> Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <> Ch") (Syntax: '"ChArray <> Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <> Ch') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <> Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <> ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <> ChArray") (Syntax: '"ChArray <> ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <> ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <> ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Ch") (Syntax: '"St <> Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Ch') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> ChArray") (Syntax: '"St <> ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> Ch") (Syntax: '"Ob <> Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> Ch') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> ChArray") (Syntax: '"Ob <> ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da <= Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da <= Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da <= Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da <= Da") (Syntax: '"Da <= Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da <= Da') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da <= Da') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <= St") (Syntax: '"Ch <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <= Ob") (Syntax: '"Ch <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch <= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch <= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <= Ch") (Syntax: '"Ch <= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch <= Ch') - Left: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch <= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch <= ChArray") (Syntax: '"Ch <= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch <= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch <= ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <= St") (Syntax: '"ChArray <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <= Ob") (Syntax: '"ChArray <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray <= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray <= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <= Ch") (Syntax: '"ChArray <= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <= Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <= ChArray") (Syntax: '"ChArray <= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <= ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Ch") (Syntax: '"St <= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= ChArray") (Syntax: '"St <= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= Ch") (Syntax: '"Ob <= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= ChArray") (Syntax: '"Ob <= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da >= Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da >= Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da >= Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da >= Da") (Syntax: '"Da >= Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da >= Da') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da >= Da') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch >= St") (Syntax: '"Ch >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch >= Ob") (Syntax: '"Ch >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ch >= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ch >= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch >= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch >= Ch") (Syntax: '"Ch >= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch >= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch >= Ch') - Left: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch >= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch >= ChArray") (Syntax: '"Ch >= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch >= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch >= ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray >= St") (Syntax: '"ChArray >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray >= Ob") (Syntax: '"ChArray >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rray >= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rray >= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray >= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray >= Ch") (Syntax: '"ChArray >= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray >= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray >= Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray >= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray >= ChArray") (Syntax: '"ChArray >= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray >= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray >= ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Ch") (Syntax: '"St >= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= ChArray") (Syntax: '"St >= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= Ch") (Syntax: '"Ob >= Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= ChArray") (Syntax: '"Ob >= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da < Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da < Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da < Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da < Da") (Syntax: '"Da < Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da < Da') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da < Da') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch < St") (Syntax: '"Ch < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch < Ob") (Syntax: '"Ch < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch < Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch < Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch < Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch < Ch") (Syntax: '"Ch < Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch < Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch < Ch') - Left: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch < ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch < ChArray") (Syntax: '"Ch < ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch < ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch < ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray < St") (Syntax: '"ChArray < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray < Ob") (Syntax: '"ChArray < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array < Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array < Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray < Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray < Ch") (Syntax: '"ChArray < Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray < Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray < Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray < ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray < ChArray") (Syntax: '"ChArray < ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray < ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray < ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Ch") (Syntax: '"St < Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < ChArray") (Syntax: '"St < ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < Ch") (Syntax: '"Ob < Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < Ch') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < ChArray") (Syntax: '"Ob < ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da > Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da > Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da > Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da > Da") (Syntax: '"Da > Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da > Da') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da > Da') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch > St") (Syntax: '"Ch > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch > Ob") (Syntax: '"Ch > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ch > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ch > Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ch > Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch > Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch > Ch") (Syntax: '"Ch > Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch > Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch > Ch') - Left: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ch > ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ch > ChArray") (Syntax: '"Ch > ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ch > ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Ch > ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray > St") (Syntax: '"ChArray > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray > Ob") (Syntax: '"ChArray > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'ChArray > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Array > Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Array > Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray > Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray > Ch") (Syntax: '"ChArray > Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray > Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray > Ch') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray > ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray > ChArray") (Syntax: '"ChArray > ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray > ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray > ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Ch") (Syntax: '"St > Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > Ch') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > ChArray") (Syntax: '"St > ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > ChArray') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > Ch)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > Ch)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > Ch"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > Ch") (Syntax: '"Ob > Ch"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > Ch') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > Ch') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Ch') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Ch (OperationKind.LocalReferenceExpression, Type: System.Char) (Syntax: 'Ch') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > ChArray") (Syntax: '"Ob > ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > ChArray') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'By = 39') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Byte) (Syntax: 'By = 39') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Byte, Constant: 39) (Syntax: '39') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 39) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 39) (Syntax: '39') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'US = 37') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.UInt16) (Syntax: 'US = 37') - Left: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16, Constant: 37) (Syntax: '37') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 37) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 37) (Syntax: '37') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'UI = 34') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.UInt32) (Syntax: 'UI = 34') - Left: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32, Constant: 34) (Syntax: '34') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 34) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 34) (Syntax: '34') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'UL = 30') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.UInt64) (Syntax: 'UL = 30') - Left: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64, Constant: 30) (Syntax: '30') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 30) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 30) (Syntax: '30') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - US)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt16)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - US)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - US"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - US") (Syntax: '"By - US"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - US') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt16) (Syntax: 'By - US') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt16) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - UI") (Syntax: '"By - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'By - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By - UL") (Syntax: '"By - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'By - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'By') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - UI)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - UI)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - UI"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - UI") (Syntax: '"US - UI"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - UI') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt32) (Syntax: 'US - UI') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt32) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", US - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", US - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"US - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "US - UL") (Syntax: '"US - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'US - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'US - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'US') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: US (OperationKind.LocalReferenceExpression, Type: System.UInt16) (Syntax: 'US') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", UI - UL)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.UInt64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", UI - UL)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"UI - UL"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "UI - UL") (Syntax: '"UI - UL"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'UI - UL') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.UInt64) (Syntax: 'UI - UL') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.UInt64) (Syntax: 'UI') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: UI (OperationKind.LocalReferenceExpression, Type: System.UInt32) (Syntax: 'UI') - Right: ILocalReferenceExpression: UL (OperationKind.LocalReferenceExpression, Type: System.UInt64) (Syntax: 'UL') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'By = 8') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Byte) (Syntax: 'By = 8') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Byte, Constant: 8) (Syntax: '8') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (Text: 8) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 8) (Syntax: '8') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", By * By)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Byte)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", By * By)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"By * By"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "By * By") (Syntax: '"By * By"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'By * By') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Byte) (Syntax: 'By * By') - Left: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - Right: ILocalReferenceExpression: By (OperationKind.LocalReferenceExpression, Type: System.Byte) (Syntax: 'By') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'Ob = #8:31:00 AM#') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Object) (Syntax: 'Ob = #8:31:00 AM#') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: '#8:31:00 AM#') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: System.DateTime, Constant: 1/1/0001 8:31:00 AM) (Syntax: '#8:31:00 AM#') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'St = Da.ToString()') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.String) (Syntax: 'St = Da.ToString()') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IInvocationExpression (virtual Function System.DateTime.ToString() As System.String) (OperationKind.InvocationExpression, Type: System.String) (Syntax: 'Da.ToString()') - Instance Receiver: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Arguments(0) - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da = St") (Syntax: '"Da = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da = St') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da = Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da = Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da = Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da = Ob") (Syntax: '"Da = Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da = Ob') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Da = Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St = Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St = Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Da") (Syntax: '"St = Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Da') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob = Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob = Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob = Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob = Da") (Syntax: '"Ob = Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob = Da') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob = Da') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da <> St") (Syntax: '"Da <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da <> St') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da <> Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da <> Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da <> Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da <> Ob") (Syntax: '"Da <> Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da <> Ob') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Da <> Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <> Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <> Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Da") (Syntax: '"St <> Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Da') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <> Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <> Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <> Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <> Da") (Syntax: '"Ob <> Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <> Da') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <> Da') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da <= St") (Syntax: '"Da <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da <= St') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da <= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da <= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da <= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da <= Ob") (Syntax: '"Da <= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da <= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Da <= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St <= Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St <= Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Da") (Syntax: '"St <= Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Da') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob <= Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob <= Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob <= Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob <= Da") (Syntax: '"Ob <= Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob <= Da') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob <= Da') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da >= St") (Syntax: '"Da >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da >= St') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Da >= Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Da >= Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da >= Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da >= Ob") (Syntax: '"Da >= Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da >= Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Da >= Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , St >= Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , St >= Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Da") (Syntax: '"St >= Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Da') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... , Ob >= Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... , Ob >= Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob >= Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob >= Da") (Syntax: '"Ob >= Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob >= Da') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob >= Da') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da < St") (Syntax: '"Da < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da < St') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da < Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da < Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da < Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da < Ob") (Syntax: '"Da < Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da < Ob') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Da < Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St < Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St < Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Da") (Syntax: '"St < Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Da') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob < Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob < Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob < Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob < Da") (Syntax: '"Ob < Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob < Da') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob < Da') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da > St") (Syntax: '"Da > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Da > St') - Left: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Da > Ob)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Da > Ob)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Da > Ob"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Da > Ob") (Syntax: '"Da > Ob"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Da > Ob') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Da > Ob') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - Right: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", St > Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", St > Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Da") (Syntax: '"St > Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Da') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > Da') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.DateTime) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ", Ob > Da)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Object)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ", Ob > Da)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Ob > Da"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Ob > Da") (Syntax: '"Ob > Da"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Ob > Da') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Object) (Syntax: 'Ob > Da') - Left: ILocalReferenceExpression: Ob (OperationKind.LocalReferenceExpression, Type: System.Object) (Syntax: 'Ob') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Object) (Syntax: 'Da') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: Da (OperationKind.LocalReferenceExpression, Type: System.DateTime) (Syntax: 'Da') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: '[In] = -5') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Int32) (Syntax: '[In] = -5') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IUnaryOperatorExpression (UnaryOperatorKind.Minus, IsChecked) (OperationKind.UnaryOperatorExpression, Type: System.Int32, Constant: -5) (Syntax: '-5') - Operand: ILiteralExpression (Text: 5) (OperationKind.LiteralExpression, Type: System.Int32, Constant: 5) (Syntax: '5') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'St = "12"') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.String) (Syntax: 'St = "12"') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "12") (Syntax: '"12"') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'ChArray = "14"') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.Char()) (Syntax: 'ChArray = "14"') - Left: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char()) (Syntax: '"14"') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "14") (Syntax: '"14"') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] + Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] + Nothing") (Syntax: '"[In] + Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] + Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] + Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + Nothing") (Syntax: '"St + Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St + Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Null.Value)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Null.Value)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St + DBNull.Value"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St + DBNull.Value") (Syntax: '"St + DBNull.Value"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St + DBNull.Value') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St + DBNull.Value') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing + Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing + Nothing") (Syntax: '"Nothing + Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing + Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing + Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing + [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing + [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing + [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing + [In]") (Syntax: '"Nothing + [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing + [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Add, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing + [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing + St") (Syntax: '"Nothing + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing + St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Nothing + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Value + St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Value + St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"DBNull.Value + St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "DBNull.Value + St") (Syntax: '"DBNull.Value + St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'DBNull.Value + St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'DBNull.Value + St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] - Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] - Nothing") (Syntax: '"[In] - Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] - Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] - Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St - Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St - Nothing") (Syntax: '"St - Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St - Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St - Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... - Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... - Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing - Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing - Nothing") (Syntax: '"Nothing - Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing - Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing - Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing - [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing - [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing - [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing - [In]") (Syntax: '"Nothing - [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing - [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing - [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing - St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing - St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing - St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing - St") (Syntax: '"Nothing - St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing - St') - IBinaryOperatorExpression (BinaryOperatorKind.Subtract, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Nothing - St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] * Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] * Nothing") (Syntax: '"[In] * Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] * Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] * Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St * Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St * Nothing") (Syntax: '"St * Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St * Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St * Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... * Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... * Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing * Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing * Nothing") (Syntax: '"Nothing * Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing * Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing * Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing * [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing * [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing * [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing * [In]") (Syntax: '"Nothing * [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing * [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing * [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing * St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing * St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing * St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing * St") (Syntax: '"Nothing * St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing * St') - IBinaryOperatorExpression (BinaryOperatorKind.Multiply, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Nothing * St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] / Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] / Nothing") (Syntax: '"[In] / Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] / Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] / Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St / Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St / Nothing") (Syntax: '"St / Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St / Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St / Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... / Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... / Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing / Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing / Nothing") (Syntax: '"Nothing / Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing / Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double, Constant: NaN) (Syntax: 'Nothing / Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing / [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing / [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing / [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing / [In]") (Syntax: '"Nothing / [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing / [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Nothing / [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing / St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing / St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing / St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing / St") (Syntax: '"Nothing / St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing / St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Nothing / St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing \ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing \ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing \ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing \ [In]") (Syntax: '"Nothing \ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing \ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing \ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing \ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing \ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing \ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing \ St") (Syntax: '"Nothing \ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing \ St') - IBinaryOperatorExpression (BinaryOperatorKind.Divide, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Nothing \ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... od Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... od Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Mod Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Mod Nothing") (Syntax: '"St Mod Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Mod Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St Mod Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... g Mod [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... g Mod [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Mod [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Mod [In]") (Syntax: '"Nothing Mod [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Mod [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing Mod [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing Mod St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing Mod St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Mod St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Mod St") (Syntax: '"Nothing Mod St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Mod St') - IBinaryOperatorExpression (BinaryOperatorKind.Remainder, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Nothing Mod St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] ^ Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] ^ Nothing") (Syntax: '"[In] ^ Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] ^ Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: '[In] ^ Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St ^ Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St ^ Nothing") (Syntax: '"St ^ Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St ^ Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'St ^ Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ^ Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ^ Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing ^ Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing ^ Nothing") (Syntax: '"Nothing ^ Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing ^ Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double, Constant: 1) (Syntax: 'Nothing ^ Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing ^ [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing ^ [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing ^ [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing ^ [In]") (Syntax: '"Nothing ^ [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing ^ [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Nothing ^ [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing ^ St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Double)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing ^ St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing ^ St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing ^ St") (Syntax: '"Nothing ^ St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing ^ St') - IBinaryOperatorExpression (BinaryOperatorKind.Power, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Double) (Syntax: 'Nothing ^ St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Double) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] << Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] << Nothing") (Syntax: '"[In] << Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] << Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] << Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St << Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St << Nothing") (Syntax: '"St << Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St << Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St << Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... << Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... << Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing << Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing << Nothing") (Syntax: '"Nothing << Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing << Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing << Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ng << [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ng << [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing << [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing << [In]") (Syntax: '"Nothing << [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing << [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing << [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... hing << St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... hing << St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing << St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing << St") (Syntax: '"Nothing << St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing << St') - IBinaryOperatorExpression (BinaryOperatorKind.LeftShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing << St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >> Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >> Nothing") (Syntax: '"[In] >> Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >> Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] >> Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >> Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >> Nothing") (Syntax: '"St >> Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >> Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St >> Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >> Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >> Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing >> Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing >> Nothing") (Syntax: '"Nothing >> Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing >> Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing >> Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ng >> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ng >> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing >> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing >> [In]") (Syntax: '"Nothing >> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing >> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing >> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... hing >> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... hing >> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing >> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing >> St") (Syntax: '"Nothing >> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing >> St') - IBinaryOperatorExpression (BinaryOperatorKind.RightShift, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing >> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] OrElse Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] OrElse Nothing") (Syntax: '"[In] OrElse Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] OrElse Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] OrElse Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St OrElse Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St OrElse Nothing") (Syntax: '"St OrElse Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St OrElse Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St OrElse Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... se Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... se Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing OrElse Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing OrElse Nothing") (Syntax: '"Nothing OrElse Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing OrElse Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing OrElse Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... rElse [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... rElse [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing OrElse [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing OrElse [In]") (Syntax: '"Nothing OrElse [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing OrElse [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing OrElse [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] AndAlso Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] AndAlso Nothing") (Syntax: '"[In] AndAlso Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] AndAlso Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] AndAlso Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing An ... so Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing AndAlso Nothing") (Syntax: '"Nothing An ... so Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing AndAlso Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing AndAlso Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... dAlso [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... dAlso [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing AndAlso [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing AndAlso [In]") (Syntax: '"Nothing AndAlso [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing AndAlso [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing AndAlso [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & Nothing") (Syntax: '"[In] & Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & Nothing') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Null.Value)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Null.Value)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] & DBNull.Value"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] & DBNull.Value") (Syntax: '"[In] & DBNull.Value"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] & DBNull.Value') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: '[In] & DBNull.Value') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & Nothing") (Syntax: '"St & Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Null.Value)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Null.Value)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St & DBNull.Value"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St & DBNull.Value") (Syntax: '"St & DBNull.Value"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St & DBNull.Value') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'St & DBNull.Value') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing & Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing & Nothing") (Syntax: '"Nothing & Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing & Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String, Constant: "") (Syntax: 'Nothing & Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Null.Value)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Null.Value)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing & DBNull.Value"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing & DBNull.Value") (Syntax: '"Nothing & DBNull.Value"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing & DBNull.Value') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String, Constant: "") (Syntax: 'Nothing & DBNull.Value') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"DBNull.Value & Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "DBNull.Value & Nothing") (Syntax: '"DBNull.Value & Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'DBNull.Value & Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String, Constant: "") (Syntax: 'DBNull.Value & Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing & [In]") (Syntax: '"Nothing & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Nothing & [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing & St") (Syntax: '"Nothing & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Nothing & St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... lue & [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... lue & [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"DBNull.Value & [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "DBNull.Value & [In]") (Syntax: '"DBNull.Value & [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'DBNull.Value & [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'DBNull.Value & [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Value & St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Value & St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"DBNull.Value & St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "DBNull.Value & St") (Syntax: '"DBNull.Value & St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'DBNull.Value & St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'DBNull.Value & St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Like Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Like Nothing") (Syntax: '"[In] Like Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Like Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] Like Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Like Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Like Nothing") (Syntax: '"St Like Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Like Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St Like Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Like Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Like Nothing") (Syntax: '"Nothing Like Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Like Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing Like Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Like [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Like [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Like [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Like [In]") (Syntax: '"Nothing Like [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Like [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing Like [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: '[In]') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ng Like St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ng Like St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Like St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Like St") (Syntax: '"Nothing Like St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Like St') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing Like St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] = Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] = Nothing") (Syntax: '"[In] = Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] = Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] = Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St = Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St = Nothing") (Syntax: '"St = Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St = Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St = Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing = Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing = Nothing") (Syntax: '"Nothing = Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing = Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: True) (Syntax: 'Nothing = Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing = [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing = [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing = [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing = [In]") (Syntax: '"Nothing = [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing = [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing = [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing = St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing = St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing = St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing = St") (Syntax: '"Nothing = St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing = St') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing = St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <> Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <> Nothing") (Syntax: '"[In] <> Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <> Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <> Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <> Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <> Nothing") (Syntax: '"St <> Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <> Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <> Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <> Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <> Nothing") (Syntax: '"Nothing <> Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <> Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing <> Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ng <> [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ng <> [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <> [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <> [In]") (Syntax: '"Nothing <> [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <> [In]') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing <> [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... hing <> St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... hing <> St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <> St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <> St") (Syntax: '"Nothing <> St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <> St') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing <> St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] <= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] <= Nothing") (Syntax: '"[In] <= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] <= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] <= Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St <= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St <= Nothing") (Syntax: '"St <= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St <= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St <= Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <= Nothing") (Syntax: '"Nothing <= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: True) (Syntax: 'Nothing <= Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ng <= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ng <= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <= [In]") (Syntax: '"Nothing <= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing <= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... hing <= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... hing <= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <= St") (Syntax: '"Nothing <= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <= St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing <= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] >= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] >= Nothing") (Syntax: '"[In] >= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] >= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] >= Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St >= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St >= Nothing") (Syntax: '"St >= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St >= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St >= Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing >= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing >= Nothing") (Syntax: '"Nothing >= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing >= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: True) (Syntax: 'Nothing >= Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ng >= [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ng >= [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing >= [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing >= [In]") (Syntax: '"Nothing >= [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing >= [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing >= [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... hing >= St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... hing >= St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing >= St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing >= St") (Syntax: '"Nothing >= St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing >= St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing >= St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] < Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] < Nothing") (Syntax: '"[In] < Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] < Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] < Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St < Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St < Nothing") (Syntax: '"St < Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St < Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St < Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing < Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing < Nothing") (Syntax: '"Nothing < Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing < Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing < Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing < [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing < [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing < [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing < [In]") (Syntax: '"Nothing < [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing < [In]') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing < [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing < St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing < St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing < St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing < St") (Syntax: '"Nothing < St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing < St') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing < St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] > Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] > Nothing") (Syntax: '"[In] > Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] > Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: '[In] > Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St > Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St > Nothing") (Syntax: '"St > Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St > Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St > Nothing') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing > Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing > Nothing") (Syntax: '"Nothing > Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing > Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean, Constant: False) (Syntax: 'Nothing > Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing > [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing > [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing > [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing > [In]") (Syntax: '"Nothing > [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing > [In]') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing > [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... thing > St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... thing > St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing > St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing > St") (Syntax: '"Nothing > St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing > St') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing > St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Xor Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Xor Nothing") (Syntax: '"[In] Xor Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Xor Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Xor Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Xor Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Xor Nothing") (Syntax: '"St Xor Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Xor Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Xor Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... or Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... or Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Xor Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Xor Nothing") (Syntax: '"Nothing Xor Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Xor Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing Xor Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... g Xor [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... g Xor [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Xor [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Xor [In]") (Syntax: '"Nothing Xor [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Xor [In]') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing Xor [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing Xor St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing Xor St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Xor St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Xor St") (Syntax: '"Nothing Xor St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Xor St') - IBinaryOperatorExpression (BinaryOperatorKind.ExclusiveOr, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Nothing Xor St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] Or Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] Or Nothing") (Syntax: '"[In] Or Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] Or Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] Or Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St Or Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St Or Nothing") (Syntax: '"St Or Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St Or Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St Or Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Or Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Or Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Or Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Or Nothing") (Syntax: '"Nothing Or Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Or Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing Or Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ng Or [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ng Or [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Or [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Or [In]") (Syntax: '"Nothing Or [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Or [In]') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing Or [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... hing Or St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... hing Or St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Or St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Or St") (Syntax: '"Nothing Or St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Or St') - IBinaryOperatorExpression (BinaryOperatorKind.Or, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Nothing Or St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"[In] And Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "[In] And Nothing") (Syntax: '"[In] And Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: '[In] And Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: '[In] And Nothing') - Left: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St And Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St And Nothing") (Syntax: '"St And Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St And Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'St And Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... nd Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... nd Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing And Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing And Nothing") (Syntax: '"Nothing And Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing And Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing And Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... g And [In])') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int32)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... g And [In])') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing And [In]"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing And [In]") (Syntax: '"Nothing And [In]"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing And [In]') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int32) (Syntax: 'Nothing And [In]') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int32, Constant: 0) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: ILocalReferenceExpression: In (OperationKind.LocalReferenceExpression, Type: System.Int32) (Syntax: '[In]') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ing And St)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Int64)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ing And St)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing And St"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing And St") (Syntax: '"Nothing And St"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing And St') - IBinaryOperatorExpression (BinaryOperatorKind.And, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Int64) (Syntax: 'Nothing And St') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Int64) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray + Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray + Nothing") (Syntax: '"ChArray + Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray + Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray + Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... + ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... + ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing + ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing + ChArray") (Syntax: '"Nothing + ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing + ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Nothing + ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & Nothing") (Syntax: '"ChArray & Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & Nothing') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... Null.Value)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... Null.Value)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray & DBNull.Value"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray & DBNull.Value") (Syntax: '"ChArray & DBNull.Value"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray & DBNull.Value') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'ChArray & DBNull.Value') - Left: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing & ChArray") (Syntax: '"Nothing & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'Nothing & ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... & ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.String)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... & ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"DBNull.Value & ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "DBNull.Value & ChArray") (Syntax: '"DBNull.Value & ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'DBNull.Value & ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.String) (Syntax: 'DBNull.Value & ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'DBNull.Value') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IFieldReferenceExpression: System.DBNull.Value As System.DBNull (Static) (OperationKind.FieldReferenceExpression, Type: System.DBNull) (Syntax: 'DBNull.Value') - Instance Receiver: null - Right: IConversionExpression (Explicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray Like Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray Like Nothing") (Syntax: '"ChArray Like Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray Like Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray Like Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... ke ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... ke ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing Like ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing Like ChArray") (Syntax: '"Nothing Like ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing Like ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Invalid, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing Like ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray = Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray = Nothing") (Syntax: '"ChArray = Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray = Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray = Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... = ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... = ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing = ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing = ChArray") (Syntax: '"Nothing = ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing = ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.Equals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing = ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <> Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <> Nothing") (Syntax: '"ChArray <> Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <> Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <> Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <> ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <> ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <> ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <> ChArray") (Syntax: '"Nothing <> ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <> ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.NotEquals, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing <> ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray <= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray <= Nothing") (Syntax: '"ChArray <= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray <= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray <= Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... <= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... <= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing <= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing <= ChArray") (Syntax: '"Nothing <= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing <= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing <= ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray >= Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray >= Nothing") (Syntax: '"ChArray >= Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray >= Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray >= Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... >= ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... >= ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing >= ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing >= ChArray") (Syntax: '"Nothing >= ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing >= ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThanOrEqual, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing >= ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray < Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray < Nothing") (Syntax: '"ChArray < Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray < Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray < Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... < ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... < ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing < ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing < ChArray") (Syntax: '"Nothing < ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing < ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.LessThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing < ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"ChArray > Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "ChArray > Nothing") (Syntax: '"ChArray > Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'ChArray > Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'ChArray > Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... > ChArray)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... > ChArray)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"Nothing > ChArray"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "Nothing > ChArray") (Syntax: '"Nothing > ChArray"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'Nothing > ChArray') - IBinaryOperatorExpression (BinaryOperatorKind.GreaterThan, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'Nothing > ChArray') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Char(), Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String) (Syntax: 'ChArray') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: ChArray (OperationKind.LocalReferenceExpression, Type: System.Char()) (Syntax: 'ChArray') - InConversion: null - OutConversion: null - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'St = "False"') - Expression: ISimpleAssignmentExpression (OperationKind.SimpleAssignmentExpression, Type: System.String) (Syntax: 'St = "False"') - Left: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "False") (Syntax: '"False"') - IExpressionStatement (OperationKind.ExpressionStatement) (Syntax: 'PrintResult ... so Nothing)') - Expression: IInvocationExpression (Sub PrintHelper.PrintResult(expr As System.String, val As System.Boolean)) (OperationKind.InvocationExpression, Type: System.Void) (Syntax: 'PrintResult ... so Nothing)') - Instance Receiver: null - Arguments(2): - IArgument (ArgumentKind.Explicit, Matching Parameter: expr) (OperationKind.Argument) (Syntax: '"St AndAlso Nothing"') - ILiteralExpression (OperationKind.LiteralExpression, Type: System.String, Constant: "St AndAlso Nothing") (Syntax: '"St AndAlso Nothing"') - InConversion: null - OutConversion: null - IArgument (ArgumentKind.Explicit, Matching Parameter: val) (OperationKind.Argument) (Syntax: 'St AndAlso Nothing') - IBinaryOperatorExpression (BinaryOperatorKind.ConditionalAnd, IsChecked) (OperationKind.BinaryOperatorExpression, Type: System.Boolean) (Syntax: 'St AndAlso Nothing') - Left: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'St') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILocalReferenceExpression: St (OperationKind.LocalReferenceExpression, Type: System.String) (Syntax: 'St') - Right: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.Boolean) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: IConversionExpression (Implicit, TryCast: False, Unchecked) (OperationKind.ConversionExpression, Type: System.String, Constant: null) (Syntax: 'Nothing') - Conversion: CommonConversion (Exists: False, IsIdentity: False, IsNumeric: False, IsReference: False, IsUserDefined: False) (MethodSymbol: null) - Operand: ILiteralExpression (OperationKind.LiteralExpression, Type: null, Constant: null) (Syntax: 'Nothing') - InConversion: null - OutConversion: null - ILabelStatement (Label: exit) (OperationKind.LabelStatement) (Syntax: 'End Sub') - LabeledStatement: null - IReturnStatement (OperationKind.ReturnStatement) (Syntax: 'End Sub') - ReturnedValue: null \ No newline at end of file diff --git a/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestSource1.vb b/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestSource1.vb index 6670ab45933..fdb35f46d35 100644 --- a/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestSource1.vb +++ b/src/Compilers/VisualBasic/Test/Semantic/Semantics/BinaryOperatorsTestSource1.vb @@ -6,7 +6,7 @@ Imports System Module Module1 - Sub Main() 'BIND:"Sub Main()" + Sub Main() Dim BoFalse As Boolean Dim BoTrue As Boolean Dim SB As SByte diff --git a/src/Test/Utilities/Portable/Compilation/OperationTreeVerifier.cs b/src/Test/Utilities/Portable/Compilation/OperationTreeVerifier.cs index 88006b2766c..ef5bc1be092 100644 --- a/src/Test/Utilities/Portable/Compilation/OperationTreeVerifier.cs +++ b/src/Test/Utilities/Portable/Compilation/OperationTreeVerifier.cs @@ -781,7 +781,7 @@ public override void VisitUnaryOperatorExpression(IUnaryOperatorExpression opera if (operation.IsChecked) { - kindStr += ", IsChecked"; + kindStr += ", Checked"; } LogString($" ({kindStr})"); @@ -803,12 +803,12 @@ public override void VisitBinaryOperatorExpression(IBinaryOperatorExpression ope if (operation.IsChecked) { - kindStr += ", IsChecked"; + kindStr += ", Checked"; } if (operation.IsCompareText) { - kindStr += "-IsCompareText"; + kindStr += ", CompareText"; } LogString($" ({kindStr})"); -- GitLab